Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# split text by spaces

string[] temp = yourString.Split(' ');
label1.Text = temp[0];
label2.Text = temp[1];
label3.Text = temp[2];
 
PREVIOUS NEXT
Tagged: #split #text #spaces
ADD COMMENT
Topic
Name
2+4 =