我想知道如何:
我有一个包含3个单词的文本框,
字1 WORD2 WORD3
现在我试图通过按下按钮将上面的文本转换为此
来找到解决方案'字1', “字2”, 'WORD3'
最好的问候
答案 0 :(得分:0)
您可以将regx
用于此
Dim s As String = TextBox1.Text '<---- here text is "Word1 Word2 Word3"
s = "'" & System.Text.RegularExpressions.Regex.Replace(s, "\s+", "'," & Chr(13) & "'") & "'"
'<---- Add ' in the begining and end
'<---- Replace n number of white spaces with ','
因此输出将是
'Word1', 'Word2', 'Word3'