For example,
string = "ads, 32, dv, \"sdf\"
sd, 213, as, \"asd
asd\"
asd, 123 sd, \"asd\"";
There are 3 line returns \n. I want to find the second one since it is inside the quotes ("").
StringCases[string,RegularExpression["put regular expression here"]];
I have tried the following regex which should work if only Mathematica would allow variable length lookbehind assertions:
RegularExpression["(?<=,\"[^\"]*)\\n(?=[^\"]*\",)"]