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

Popular posts from this blog

Eclipse CDT variable colors in editor -

AJAX doesn't send POST query -

wpf - Custom Message Box Advice -