字符串的操作应用
[vb]
Module Module
Sub Main()
定义个字符串变量
Dim str str str As String
给strstr付初值
str = Hello : str = World
ConsoleWriteLine(方法Concat)
连接一个或多个字符串
ConsoleWriteLine(str={}str={}StringConcat(strstr)={} str str StringConcat(str str))
判断字符串中是否具有相同的值返回类型为布尔型
ConsoleWriteLine(方法Equals)
ConsoleWriteLine(str={}str={}StringEquals(str)={} str str strEquals(str))
在字符串中指定索引位置插入指定的字符串
ConsoleWriteLine(方法Insert)
str = : str = aaa
ConsoleWriteLine(str={}str={}strInsert(str)={} str str strInsert( str))
左右对齐字符串中的字符
ConsoleWriteLine(方法PadLeft/PadRight)
str = World : str = 世界
ConsoleWriteLine(str={} str)
ConsoleWriteLine(strPadLeft(*)={}strPadRight(*)={} strPadLeft( *) strPadRight( *))
ConsoleWriteLine(str={} str)
ConsoleWriteLine(strPadLeft(*)={}strPadRight(*)={} strPadLeft( *) strPadRight( *))
找出指定字符串或字符转在此字符串中的第一个最后一个匹配项的索引位置
ConsoleWriteLine(方法IndexOf/LastIndexOf)
str = Visual BasicNETASPNETC#NET
ConsoleWriteLine(str={} str)
ConsoleWriteLine(strIndexOf(NET)={}strLastIndexOf(NET)={} strIndexOf(NET) strLastIndexOf(NET))
将字符串中的字符复制到字符串数组
ConsoleWriteLine(方法ToCharArray)
str = strToCharArray(strIndexOf(NET) )
ConsoleWriteLine(str={} str)
ConsoleWriteLine(strToCharArray(strIndexOf(NET))={} str)
在指定字符串数组的每个元素之间串联指定的分隔符产生单个串联的字符串
ConsoleWriteLine(方法Join)
Dim myArray() As String
myArray() = I : myArray() = am : myArray() = a : myArray() = student
For i As Integer = To
ConsoleWrite(myArrat({})={} i myArray(i))
Next
ConsoleWriteLine()
ConsoleWriteLine(StringJoin(*myArray)={} StringJoin(* myArray))
此字符串中删除指定个数字符
ConsoleWriteLine(方法Remove)
str =
ConsoleWriteLine(str={}strRemove()={} str strRemove( ))
将此字符串指定字符串字符的所有匹配项代替为其他指定字符串
ConsoleWriteLine(方法Replace)
str =
str = abc
ConsoleWriteLine(str={} str={} str={} strReplace(str str)={} str str str strReplace(str str))
从此字符串检索字符串
ConsoleWriteLine(方法SubString)
ConsoleWriteLine(str={}strSubstring()={} str strSubstring( ))
ConsoleReadLine()
End Sub
End Module