java - Split String by comma separated , but not able to find generic solution -
string str = "\"{\"\"oman\"\"\",333,333,locationoman,1,null,3.33333e+15,0,null,-1,null,null,null,null,null,null,null,null,,null,null,null,1,null,50036,1.42771e+12,0,null,0,null,null,null,,null,null,null,null,2,0,1,3,0,1,t,f,f,0,volume,-1,302,50036,50036,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,3,null,null,null,2,1,1,1,3,1,1,1,50036,0,1,0,omanprepaid,0,blrfts186_f861,ccc_user_257,a082000000000033,\"16,436,113,650\",,null}";
i have string this, output should like
- oman
- 333
- 333
- locationoman
- 1
- null
- 3.33333e+15
- 0
- null
- -1
- null
- null
- null
- null
- null
- null
- null
- null
- null
- null
- null
- null
- 1
- null
- 50036
- 1.42771e+12
- 0
- null
- 0
- null
- null
- null
- null
- null
- null
- null
- null
- 2
- 0
- 1
- 3
- 0
- 1
- t
- f
- f
- 0
- volume
- -1
- 302
- 50036
- 50036
- 0
- 0
- 0
- 0
- null
- null
- null
- null
- null
- null
- null
- null
- null
- null
- null
- null
- null
- 3
- null
- null
- null
- 2
- 1
- 1
- 1
- 3
- 1
- 1
- 1
- 50036
- 0
- 1
- 0
- omanprepaid
- 0
- blrfts186_f861
- ccc_user_257
- a082000000000033
- 16,436,113,650
- null
- null
check 91st value, values in double quotes @ 1 index. please me .thanks in advance
you can use regex so:
string[] tokens = str.split(",(?=([^\"]*\"[^\"]*\")*[^\"]*$)");
your string array contains items want, 91st item not split because between quotes.
if want remove quotes resulting elements can loop items:
for(int = 0; < tokens.length; i++) { tokens[i] = tokens[i].replace('\"', ''); }
or 1 item:
tokens[90] = tokens[90].replace('\"', '');
Comments
Post a Comment