Here is the pattern:
string str =
"+++++tom cruise 9:44AM something text here \r\n +++++mark taylor 9:21PM";
only string that starts with +++++ and ends with AM or PM should get selected. What is Regex.split or linq query pattern?
|
|
Talon almost got it, but you need a minimal capture, not greedy. Try
|
|||||||||||||
|
|
The regex would be:
You can try it here: http://regexpal.com/ It's first capture was:
and the second was
|
|||||||
|
|
Try this regex:
Output:
or:
I recommend this regex. It will match until at find a hour on format xY:xY:AM/PM where Y is opcional. Test drive:
Output:
|
||||
|
use this:
or for getting results use:
|
|||
|
|
|
This is the exact regex code that searches for the strings as you required
|
|||||||||||||
|