I have textbox in c#, contains two or three strings with white spaces. i want to store those strings seperately.please, suggest me any code. thanx.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
NOTICE:
|
|||||||||||||||
|
|
Firstly use this name space
in your code
Output is an array. I hope it works. |
|||||||||||||||||
|
|
Calling String.Split() with no parameters will force the method to consume all whitespace and only return the separated strings:
|
|||
|
|
|
To get three different strings in an array, you can use String.Split()
|
|||
|
|
|
|||
|
|
|
Try this:
|
|||
|