You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
case CHARS:
if (curChar == '\\') {
state = EscapeState.MAYBE_ESCAPE;
continue;
}
escapedStr.append(curChar);
if (curChar == c) {
state = EscapeState.END;
break forward;
}
对于正则表达式的 \d 等符号也会丢失,有什么通用的方法解决转义符号丢失的问题吗
The text was updated successfully, but these errors were encountered: