Home > Article > Backend Development > C# split string based on 1 or more spaces
Example scenario, for the string: "AAAA AAA BBBB BBB BBB CCCCCCCC".
1. Separated as "AAAA AAA", "BBBB BBB BBB", "CCCCCCCC"
2. Separated as "AAAA", "AAA", "BBBB", "BBB", "BBB", "CCCCCCCC"
Implementation code:
void Main() { var str = "AAAA AAA BBBB BBB BBB CCCCCCCC"; // - split by multiple spaces(more than one) var val = System.Text.RegularExpressions.Regex.Split( str, @"\s{2,}"); System.Console.WriteLine(val); // - split by spaces(one or more) var val2 = System.Text.RegularExpressions.Regex.Split( str, @"\s{1,}"); System.Console.WriteLine(val2); }
The above is the content of C# split string according to 1 or more spaces. For more related content, please pay attention to the PHP Chinese website (www .php.cn)!