我有 2 个字符串,我想String.Split()
对它们使用方法,如果字符串包含“爱你”,我想做的是忽略空格并将其作为一个元素保存在数组中但是如果它只包含“爱”正常保存
str1 = "I Love Her"
str2 = "I Love You Not"
'no problem with splitting the first string
Dim strsplit1() As String = str1.Split(New String() {" "}, StringSplitOptions.None)
对于第二个字符串..我怎样才能忽略空格分隔符并将“爱你”保存为一个元素?
注意这只是一个例子,我的想法告诉我检查 indexofLove+1 但我怎样才能得到 Love 的索引?!