Hi, the attached bit of code seemingly sends mono into an infinite loop on my system. It hogs the CPU at 100% and never terminates.
I'm using mono 0.31 on a Debian unstable system. The regex works fine in python. Cheers, Christian Glodt
using System;
using System.Text.RegularExpressions;
class MainClass {
public static void Main(string[] args)
{
string ss = "a b c d e";
string[] words = Regex.Split(ss, "[ \t\n\r]*");
}
}
