简体   繁体   中英

RegEx: Find string starting with “@”, but not with “@@”

I need a RegEx to find a string starting with a single "@".

  • Match: @Hello
  • No match: @@Hello

I tried "\\B@\\w+" , but it also finds "@@Hello".

Thank you.

使用否定的超前构造(?!pattern)

^@(?!@)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM