Есть строка типа
\nWIKI/NYRT,\"New York REIT Inc (NYRT) Prices, Dividends, Splits and Trading Volume\"\nWIKI/OPWR,\"Opower Inc (OPWR) Prices, Dividends, Splits and Trading Volume\"\n
использую регулярку с паттерном
string pattern = "/(.*?)[\\/]([A-Z]*)(,.)(\".*?\")/gm";
Regex regex = new Regex(pattern);
На Regex101.com все прекрасно работает
В коде почему то нет
В чем проблема?