c# - Regular expression identifier and separator using ':' symbol -
I want to separate my string between two ':'
characters.
"mypage-google-wax: press: -happy" , then I have to exclude "press"
.
It can be assumed that there is no numerical character in the input.
There is a reason to use regular expressions at all, instead:
String [] bits = text. Sample (':');
Thinking that I understand your question correctly ... which I do not know at all. Anyway, depending on what you really want to do, it may be useful for you ...
Comments
Post a Comment