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.
次の正規表現を使用して、特定のマーカーの後に見つかった次の単語を決定しています。
(?<=marker:\W{1})(\w+)
これを更新して、マーカーの後の次の 8 文字 (スペースを含む)、-または/
-
/
ありがとう、アレックス
ソースは次のようになります。
test : 1205 no.: abc marker: 12345678 something: xxx
そして私は必要です12345678
12345678
.「任意の文字」に一致させるために使用できます。
.
(?<=marker:\W{1})(.{8})
キャプチャ グループ.の代わりに使用し、別の量指定子を使用します。\w
\w
(?<=marker:\W)(.{8})