duanrenchuo9244 2017-02-25 05:34
浏览 179
已采纳

用户名的正则表达式以@开头

I want to capture all the username that starts with @ symbol and also there is no character before it.

Until now I have a regular expression that could get all the usernames but it also fetches the usernames that have characters before it but i want to ignore them.

/@[\w\d]+/g

enter image description here

  • 写回答

4条回答 默认 最新

  • dongxin0031 2017-02-25 05:39
    关注

    You can use a positive look behind to verify that the @ is preceded by space or start of the string.

    (?<= |^)@[\w\d]+
    
    • (?<= |^) Positive look behind. Ensures that @ is preceded by space or ^ start of the string. Not the look aheads, doesn't consume any characters, it just checks.

    Regex Demo

    Example

    $string = "My name is @john_doe from test@test.com";
    preg_match("/(?<= |^)@[\w\d]+/", $string, $matches);   
    
    print_r($matches);
    // Array ( 
    //     [0] => @john_doe 
    // )
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 微带串馈天线阵列每个阵元宽度计算
  • ¥15 关于无人驾驶的航向角
  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥30 BC260Y用MQTT向阿里云发布主题消息一直错误
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了