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.
単一の「@」で始まる文字列を見つけるには、正規表現が必要です。
「\B@ \ w +」を試しましたが、「@@Hello」も見つかりました。
ありがとうございました。
負の先読み構造を使用し(?!pattern)ます。
(?!pattern)
^@(?!@)