"(?:\.|[^"\])*"
匹配带引号的字符串,包括其中出现的所有转义字符。
说明:
" # Match a quote.(?: # Either match... \. # an escaped character| # or [^"\] # any character except quote or backslash.)* # Repeat any number of times." # Match another quote.

"(?:\.|[^"\])*"
匹配带引号的字符串,包括其中出现的所有转义字符。
说明:
" # Match a quote.(?: # Either match... \. # an escaped character| # or [^"\] # any character except quote or backslash.)* # Repeat any number of times." # Match another quote.