Can someone tell me how to change this regex to indicate periods in a string?
string[] parts = Regex.Split(s, @"\b|[^\.#_a-zA-Z0-9()=><!%]");
If I provide the line: "HELLO ABC.123"
This regular expression returns {"HELLO", "ABC", ".", "123"}
I want to return {"HELLO", "ABC.123"}
Please forgive my noobishness for regex patterns.
EDIT: I am using C # 3.5
source share