We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
今天偶然发现的查看转义字符的方法,不知道是不是火星了。记录一下 我们定义一个变量a
a
var a = '\t\n';
可以在图中看出,如果我们获取到了一个这样的值,根本不知道它是什么,假如我们需要匹配,很难猜出来是\t\n
\t\n
这个时候,就需要用到JSON.stringify了
JSON.stringify
JSON.stringify(a)
这样就轻松的知道这个值里面的内容了
测试了一下,对于常见的简单的转义字符是可行的。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
今天偶然发现的查看转义字符的方法,不知道是不是火星了。记录一下
我们定义一个变量
a
可以在图中看出,如果我们获取到了一个这样的值,根本不知道它是什么,假如我们需要匹配,很难猜出来是
\t\n
这个时候,就需要用到
JSON.stringify
了这样就轻松的知道这个值里面的内容了
测试了一下,对于常见的简单的转义字符是可行的。
The text was updated successfully, but these errors were encountered: