VB .Net在文本框的每一行的开头和结尾添加字符串

时间:2014-10-16 10:53:28

标签: string textbox builder

我想知道如何:

我有一个包含3个单词的文本框,

字1 WORD2 WORD3

现在我试图通过按下按钮将上面的文本转换为此

来找到解决方案

'字1', “字2”, 'WORD3'

最好的问候

1 个答案:

答案 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'