11 references to Split
dotnet (1)
Extensions\ParseResultExtensions.cs (1)
65Regex.Split(formatString, @"{[0-9]+}");
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.CodeDom\Microsoft\VBCodeProvider.cs (1)
3282string[] lines = Regex.Split(fileStr, @"\r\n");
Microsoft.ML.Sweeper (1)
Parameters.cs (1)
560string[] minMaxRegex = Regex.Split(paramValue, "(?<=[^eE])-");
System.Text.RegularExpressions (4)
System\Text\RegularExpressions\Regex.EnumerateSplits.cs (3)
18/// The behavior of <see cref="EnumerateSplits(ReadOnlySpan{char}, string)"/> is similar to the behavior of <see cref="Split(string, string)"/>, producing the splits 20/// <see cref="Split(string, string)"/> will include the contents of capture groups in the resulting splits, while <see cref="EnumerateSplits(ReadOnlySpan{char}, string)"/> will not. 21/// And if <see cref="RegexOptions.RightToLeft"/> is specified, <see cref="Split(string, string)"/> will reverse the order of the resulting splits to be left-to-right, whereas
System\Text\RegularExpressions\Regex.Split.cs (1)
25/// The static <see cref="Split(string, string)"/> methods are equivalent to constructing a
vstest.console (2)
Internal\MSBuildLogger.cs (2)
191var stackFrames = Regex.Split(result.ErrorStackTrace, Environment.NewLine); 394string[] stackFrames = Regex.Split(errorStackTrace, Environment.NewLine);
vstest.console.arm64 (2)
src\vstest\src\vstest.console\Internal\MSBuildLogger.cs (2)
191var stackFrames = Regex.Split(result.ErrorStackTrace, Environment.NewLine); 394string[] stackFrames = Regex.Split(errorStackTrace, Environment.NewLine);