Advertisement
Shadowhand

Mini Parser

Feb 27th, 2013
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. string[] Parse(string toBeParsed, string Condition) {return toBeParsed.Split(new string[] {Condition},StringSplitOptions.RemoveEmptyEntries);}
  2.  
  3. /*
  4. Tiniest readable parser code. Parses the given string with the given condition and puts them in an array.
  5. Usage:
  6. string[] Parsed = Parse(textToBeParsed, Condition);
  7. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement