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.
C# で正規表現を使用して完全な単語を抽出する方法を知りたい
たとえば、私の文字列入力:
This$#23 is-kt jkdls
Regex Matchを次のように取得したい
This$#23
is-kt
jkdls
スペース以外の単語を抽出する必要があります [数字または特殊文字を含むことができます]
正規表現一致パターンを指定して
Regex myrex = new Regex("pattern")
MatchCollection matches = Regex.Matches("This$#23 is-kt jkdls", @"\S+"); foreach(Match match in matches) Console.WriteLine(match.Value);
単語を一致させるには \S+ を使用します。
var words = string.Split(' ');