Hello,
I would like to extract attributes from a text file. The texfile contains different attributes separated by comma (,). It is like:
104.474,104.474,649621.0654572968,245370.49979405673,0,0,146
I tried this regex , but it gives back . delimited values (like: 474,104)
(\\d+)(,\\s*\\d+)*
Thanks!