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.
正则表达式匹配下面是什么?'_' 是通配符和 '/' 是 or 语句吗?
我认为它匹配任何“m”字符或任何“r”字符。
'/_m_/_r_'
我只是假设这是一个这样使用的字符串文字:
var r = new RegExp('/_m_/_r_');
在这种情况下,表达式与文字字符串匹配/_m_/_r_。表达式中没有具有特殊含义的标记。
/_m_/_r_