I'm trying to match 0 or more strings of letters, numbers, and white space between quotation marks ("), these sets can be separated by white space or not, and the string will start with a key word to identify what to do with the matched sets.
The simplest example is below:
\\ inString = test "1" "a""3";
Regex regEx = new Regex("@(\"[0-9 a-z]*\")", RegexOptions.IgnoreCase);
Match match = regEx.Match(inStr);
The match is not a success, let alone containing the 3 expected results
However via http://regexhero.net the match is a success - I'm using regexhero as its SilverLight based so is using the .NET Regex engine...
Regexhero settings:
Regular Expression
(\"[0-9 a-z]*\")
Target String
test "1" "b""3"
Result
1: "1"
1: "b"
1: "3"
Can anyone explain whats wrong with my implementation?