Hi,
i want to get every words in textbox in VB.NET. i can compute the number of words in textbox:
Dim x As Integer = System.Text.Reg ularExpressions .Regex.Matches( textbox1.Text, "\w+").Coun t()
how can i get words?
thanks...
i want to get every words in textbox in VB.NET. i can compute the number of words in textbox:
Dim x As Integer = System.Text.Reg ularExpressions .Regex.Matches( textbox1.Text, "\w+").Coun t()
how can i get words?
thanks...
Comment