English 中文(简体)
如何在 vb. net 中创建特殊字符字符串
原标题:How to create special character string in vb.net

在古代, 我们可以指定所有字符, 名称为 chr( 56)

例如, 说字符不可打印。 我们想把它放在字符串中。 只要做

Dim a as string = chr (56)

现在我们有UTF8或 Unicode (或任何编码) 。

说我想让变数A包含

             en space
             em space
           thin space
‌ ‌    ‌      zero width non-joiner
‍ ‍    ‍       zero width joiner
‎ ‎    ‎       left-to-right mark
 ‏    ‏       right-to-left mark

事实上,说我想建立一个功能 来从我的弦上除掉所有这些人物

我该如何做呢?

我希望这个功能能保持中国人、韩国人、日本人的角色完整,

最佳回答

"http://msdn.microsoft.com/en-us/library/microsoft.visualbility.basy.strings.strings.replace" rel=“nofollow” >Replace 移除任何你想要的字符。 ChrW 生成了按代码(在Unicode Plane 0 外生成字符,您需要将 2 Char 连接起来) 的 Unicode 字符。

类似 :

Replace("My text", ChrW(8194), "");
问题回答
    <summary>
    This function replaces  smart quotes  (ASC 145, 146, 147, 148, 150) with their correct ASCII versions (ASC 39, 34, 45), and replaces any other non-ASCII characters with "?"
    </summary>
    <param name="expression"></param>
    <returns></returns>
    <remarks></remarks>
Public Function Unicode2ASCII(ByVal expression As String) As String
  Dim sb As New System.Text.StringBuilder
  For i As Integer = 1 To Len(expression)
    Dim s As String = Mid(expression, i, 1)
    Select Case Asc(s)
      Case 145, 146  apostrophes 
        sb.Append(" "c)
      Case 147, 148  inverted commas 
        sb.Append(""""c)
      Case 150  hyphen 
        sb.Append("-"c)
      Case Is > 127
        sb.Append("?"c)
      Case Else
        sb.Append(s)
    End Select
  Next i
  Return sb.ToString
End Function

或者添加它们...

Dim s As String = "a" & ChrW(8194) & "b"
MsgBox(s)

似乎应该有更好的办法, 但我所能想到的最好办法, 在所有情况下都会有效,

Private Function getString(ByVal xmlCharacterCode As String) As String
    Dim doc As XmlDocument = New XmlDocument()
    doc.LoadXml("<?xml version=""1.0"" encoding=""utf-8""?><test>" + xmlCharacterCode + "</test>")
    Return doc.InnerText
End Function

然后像这样使用它:

myString = myString.Replace(getString("&#8194;"), "")

另外,你不妨看看我找到的这页:

< a href=' https://stackoverflow.com/ questions/3393153/easy-way-way-to-convert-xx-from-html-to-utf-8-xml-either- programmaticaly-in-ne" > 转换 & amp;# XXXX; 将 HTML 转换为 UTF-8 xml 的简单方法 。





相关问题
Is Shared ReadOnly lazyloaded?

I was wondering when I write Shared ReadOnly Variable As DataType = New DataType() Or alternatively Shared ReadOnly Variable As New DataType() Is it lazy loaded or as the instance initializes? ...

Entertaining a baby with VB.NET

I would like to write a little application in VB.NET that will detect a baby s cry. How would I get started with such an application?

Choose Enter Rather than Pressing Ok button

I have many fields in the page and the last field is a dropdown with list of values. When I select an item in a dropdown and press Enter, it doesn t do the "Ok". Instead I have to manually click on Ok ...

ALT Key Shortcuts Hidden

I am using VS2008 and creating forms. By default, the underscore of the character in a textbox when using an ampersand is not shown when I run the application. ex. "&Goto Here" is not ...

Set Select command in code

On button Click I want to Set the Select command of a Gridview. I do this and then databind the grid but it doesn t work. What am i doing wrong? protected void bttnView_Click(object sender, ...

Hover tooltip on specific words in rich text box?

I m trying to create something like a tooltip suddenly hoovering over the mouse pointer when specific words in the richt text box is hovered over. How can this be done?

热门标签