Regex help

  • Thread starter Thread starter Vai2000
  • Start date Start date
V

Vai2000

Hi All, Can someone help me out with the syntax of a regular expression
which searches a string for the pattern
XYZ*
and breaks the contents on based of it.

Regex r = new Regex("XYZ*");

string[] s = r.Split(content);



doesn't work



TIA
 
Back
Top