The string likes this:
Lorem, ipsum? dolor_ sit amet, consectetur adipiscing elit.
I want to get from this string which are non-alphanumeric characters like this:
,?_,.
But how? I tried this:
var r = new Regex("[^a-zA-Z0-9]");
var m = r.Match(textBox1.Text);
var a = m.Value;
But it returns only last non-alphanumeric character .