4 references to Split
Microsoft.CodeAnalysis.CSharp.Features (1)
SyncedSource\FileBasedPrograms\FileLevelDirectiveHelpers.cs (1)
137
var parts = Patterns.Whitespace.
Split
(message.ToString(), 2);
System.Text.RegularExpressions (3)
System\Text\RegularExpressions\Regex.EnumerateSplits.cs (3)
120
/// The behavior of <see cref="EnumerateSplits(ReadOnlySpan{char}, int)"/> is similar to the behavior of <see cref="
Split
(string, int)"/>, producing the splits
122
/// <see cref="
Split
(string, int)"/> will include the contents of capture groups in the resulting splits, while <see cref="EnumerateSplits(ReadOnlySpan{char}, int)"/> will not.
123
/// And if <see cref="RegexOptions.RightToLeft"/> is specified, <see cref="
Split
(string, int)"/> will reverse the order of the resulting splits to be left-to-right, whereas