I got this code below, which works for single quotes. it finds all words between single quotes. but how do I change the regex to work with double quotes?
keywords come from a form message
So
keywords = 'peace "this world" would be "and then" some' // Match all quoted fields MatchCollection col = Regex.Matches(keywords, @"'(.*?)'"); // Copy groups to a string[] array string[] fields = new string[col.Count]; for (int i = 0; i < fields.Length; i++) { fields[i] = col[i].Groups[1].Value; // (Index 1 is the first group) }// Match all quoted fields MatchCollection col = Regex.Matches(keywords, @"'(.*?)'"); // Copy groups to a string[] array string[] fields = new string[col.Count]; for (int i = 0; i < fields.Length; i++) { fields[i] = col[i].Groups[1].Value; // (Index 1 is the first group) }
source share