Hey
I am trying to match: a number, either round number or scientific number or float number or match data between single quotes
data1 = 2,
data2 = 2E-15,
data3 = 22.00,
data4 = 'whatsinbetween',
My current expression works for round numbers and scientific numbers
[0-9]+| -?[1-9](?:\.\d+)?[Ee][-+]?
\d+
Need help with:
- If there are single quotes, i need it to match whatever data is in between
- For float numbers right now it returns it as 22 and 00 seperately as opposed to (22.00).
Any help appreciated
Thanks
Start Free Trial