Regex not working in one case
- by Arnej65
I have a string with the following information.
Obabikon, ON 49°10'N 94°10’W 2278 km N69°W
I have a regex search as follows:
String LongPattern = @"(~)?([0-9\?])+°([0-9\?])*'[EWO]";
return FindPattern(source, LongPattern);
It should be finding the <94°10’W But is it not. This regex is working for the rest of my data with out any problems.
Any clues?