Y
Yoavo
Hi,
I have a string which contains the character ','
I want to remove all the text after this character.
For example:
if my string was
string mystr = "aa,bb,cc,dd";
I want that after the operation I will get:
mystr = "aa"
How do I do it ?
Yoav.
I have a string which contains the character ','
I want to remove all the text after this character.
For example:
if my string was
string mystr = "aa,bb,cc,dd";
I want that after the operation I will get:
mystr = "aa"
How do I do it ?
Yoav.