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.
我目前有正则表达式允许下划线如何添加连字符?
这是我目前所拥有的。
^(\w+)[/]*$
我认为 *$ 等于下划线?
您可以使用此正则表达式:
^([\w-]+)/*$
并且下划线存在,因为\w这意味着包含所有字母、所有数字和下划线的单词字符。
\w