我有一个看起来像这样的字符串:
“ wes-1 className另外”
“ wes-2-bos className另外”
“ wes-3 className另一个”
“ wes-5-bos className另一个”
我需要返回wes- *并删除其他所有内容。
正则表达式让我旋转,有什么帮助吗?
使用js。这是我到目前为止所拥有的..
str.match(/\b^wes/);
最佳答案
str.match(/wes-[\w-]*/)
匹配wes-及其后的任意数量的单词或-字符。