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.
使用包含小写字母 (az) 后跟逗号的正则表达式分配 re
这是问题,我写了
var re =/[\Sa-z]/
它不工作。
小写字母有特殊的元字符吗?后面跟一个逗号是什么意思?我怎么做?
除了 az 和 , 你不需要任何东西
/[a-z],/
https://regex101.com/r/kuHbSR/1