我正在尝试修复此正则表达式,它旨在匹配除未转义引号和未转义换行符之外的任何字符串:
([^"]|\\"|[^\n]|\\n)*
有人介意帮忙吗?
例如我想匹配:
The cow jumped over the \\"moon
但不是:
The cow jumped over the "moon
换行符也一样
我正在尝试修复此正则表达式,它旨在匹配除未转义引号和未转义换行符之外的任何字符串:
([^"]|\\"|[^\n]|\\n)*
有人介意帮忙吗?
例如我想匹配:
The cow jumped over the \\"moon
但不是:
The cow jumped over the "moon
换行符也一样