string str= "test \ from | chetan";
string[] Fname = str.Split(new Char[] { '"', '|', '\'' }, StringSplitOptions.RemoveEmptyEntries);
Result Will be:
test
from
chetan
string[] Fname = str.Split(new Char[] { '"', '|', '\'' }, StringSplitOptions.RemoveEmptyEntries);
Result Will be:
test
from
chetan
No comments:
Post a Comment