I need a (from my view) very complex regular expression. I have coordinates in the following format:
[xx.x,yy.y]
and have to replace them to
[xxx0yyy000]
But they can also apear as
[xx,yy] --> [xx00yy0000]
[xx.x,yy.y] --> [xxx0yyy000]
[xx.x,yy] --> [xxx0yy0000]
[xx,yy.y] --> [xx00yyy000]
for example:
[20,14] --> [2000140000]
[17.3,15.1] --> [1730151000]
[23.4,19] --> [2340190000]
[53,11.7] --> [5300117000]
Would be nice, if some "regex pro" can give me a solution for this and explain how I can use it with notepad++ An short description on how the regex is build-on (for learning effect) would also be very nice :)