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.
文字列の最初の文字のみに一致する PCRE 正規表現を教えてください。Mongo DBにパスする必要があり、現在使用しているパフォーマンスが気になり^aます。
^a
例:
マッチ
りんご
アリゲーター
歯が立たない
ありがとう
PCREには、文字列の開始と終了を表す特別なトークンがあります
/^a/ => will match all strings that start with "a"
文字列アンカー ^の開始を使用できます。
^