Hi I want to split string(7<>2,,3<>6<>0.6) by specific character(<>) and store it in array...like c# code :
//whwre dataList=7<>2,,3<>6<>0.6
string[] wordsStrings = Regex.Split(dataList, "<>");
Hi I want to split string(7<>2,,3<>6<>0.6) by specific character(<>) and store it in array...like c# code :
string[] wordsStrings = Regex.Split(dataList, "<>");