I'm having troubles finding the regular expression to use.
I'll need this in a windows application (C#).
I have a string with the following format:
where "_" denotes a space and xx a number. Example:
What I want is to split the string into two strings:
Any ideeas?
Thank you in advance!
![[morning] [morning] [morning]](/data/assets/smilies/morning.gif)
I'll need this in a windows application (C#).
I have a string with the following format:
Code:
text1_page_xx[,xx],_text2
Code:
This is some text page 1, and the text goes on
or
Another boring section page 14,56, continous text
Code:
string 1: text_page_xx[,xx]
string 2: text2
Thank you in advance!
![[morning] [morning] [morning]](/data/assets/smilies/morning.gif)