c# - Error when splitting string with string -
c# - Error when splitting string with string -
how can split string string?
string postbuffer = "this first----webkitformboundarybbzbllwzo0cicua6this last" string[] bufferarray = postbuffer.split("----webkitformboundarybbzbllwzo0cicua6", stringsplitoptions.none);
i , error cannot convert argument '1' string char , argument '2' cannot convert system.stringsplitoptions char.
what doing wrong?
postbuffer.split(new string[] { "----webkitformboundarybbzbllwzo0cicua6"}, stringsplitoptions.none);
c# asp.net visual-studio split string-split
Comments
Post a Comment