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

  1. oman
  2. 333
  3. 333
  4. locationoman
  5. 1
  6. null
  7. 3.33333e+15
  8. 0
  9. null
  10. -1
  11. null
  12. null
  13. null
  14. null
  15. null
  16. null
  17. null
  18. null
  19. null
  20. null
  21. null
  22. null
  23. 1
  24. null
  25. 50036
  26. 1.42771e+12
  27. 0
  28. null
  29. 0
  30. null
  31. null
  32. null
  33. null
  34. null
  35. null
  36. null
  37. null
  38. 2
  39. 0
  40. 1
  41. 3
  42. 0
  43. 1
  44. t
  45. f
  46. f
  47. 0
  48. volume
  49. -1
  50. 302
  51. 50036
  52. 50036
  53. 0
  54. 0
  55. 0
  56. 0
  57. null
  58. null
  59. null
  60. null
  61. null
  62. null
  63. null
  64. null
  65. null
  66. null
  67. null
  68. null
  69. null
  70. 3
  71. null
  72. null
  73. null
  74. 2
  75. 1
  76. 1
  77. 1
  78. 3
  79. 1
  80. 1
  81. 1
  82. 50036
  83. 0
  84. 1
  85. 0
  86. omanprepaid
  87. 0
  88. blrfts186_f861
  89. ccc_user_257
  90. a082000000000033
  91. 16,436,113,650
  92. null
  93. 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

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -