「Welcom salathia」を含む文字列変数が 1 つあります
...別の文字列に店 salathia を格納したい.... vb.net を使用して asp.net でこれを行う方法
質問する
2856 次
4 に答える
0
方法 1:
Dim s As String = "Welcom salathia"
s = s.Split(" ".ToCharArray)(1)
方法 2:
Dim s As String = "Welcom salathia"
s = s.substring(s.index(" "))
于 2013-04-10T11:41:19.330 に答える
0
スペースが連続している場合
Dim s As String = "Welcom salathia"
' Split string based on spaces, gurad against runs of space
Dim words() As String = s.Split(New Char() {" "c}, StringSplitOptions.RemoveEmptyEntries)
Debug.WriteLine(words(1)) 'show second word
于 2013-04-10T13:02:38.837 に答える