P
puzzlecracker
I understand that the following would split the line in words space
separated: string[] words = Regex.Split(text, @"\W+"); Why do we need
@ before regular expression?
Thanks
separated: string[] words = Regex.Split(text, @"\W+"); Why do we need
@ before regular expression?
Thanks