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.
一致する正規表現が必要です。これには、すべての単語の後にスペースがあり、その後にコロンが続きます
[All alphabets][whitespace][colon]
次のパターンは、Ruby、Perl、JavaScript、.Net などで使用できます。 [a-zA-Z]+\s+:
[a-zA-Z]+\s+:
おそらくこれ:
[a-zA-Z]+[\W];
これは次のように一致します。
test ; test2 ;これはうまくいきませんが、これはdoes ; work ;
test ;
test2 ;
does ;
work ;