Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一些帮助来编写一个提示输入字符串并警告输入的字符串是否包含反斜杠字符或泰卢固语字母 ddha (U+0C22) 的脚本
提示输入字符串:
var string = prompt("Enter a string");
检查它是否包含反斜杠:
string.match(/\\/)
检查它是否包含泰卢固语字母:
string.match(/\u0c22/)
如果找到匹配项,该match方法将返回一个包含匹配字母的数组,否则将返回null.
match
null