How i could match any string inside quotes if its length is higher than 10?
example:
"hi"
"hello"
"something_else"
Match just something_else, as its length is higher than 10.
I tried:
(["'])(?:(?=(\\?))\2.)*?\1
Could match anything inside the quotes, but I'm in doubt about how to set the min length.