Regex Letters, Numbers, Dashes, and Underscores

前端 未结 4 1739
盖世英雄少女心
盖世英雄少女心 2020-12-02 19:47

Im not sure how I can achieve this match expression. Currently I am using,

([A-Za-z0-9-]+)

...which matches letters and numbers. I would

4条回答
  •  既然无缘
    2020-12-02 20:27

    Depending on your regex variant, you might be able to do simply this:

    ([\w-]+)
    

    Also, you probably don't need the parentheses unless this is part of a larger expression.

提交回复
热议问题