Conversion regex incorrect #7
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Regex fails when decimal are in old number.
New regex should be
/(\[?)([\d\.]+)\s?,\s?([\d\.]+)(\]?)/(also find better shortcut Alt+F3 seems to work).Correction
/(\[?)([\d\.]+)(,|(?:,\s)|\s)\D*([\d\.]+)(\]?)/is even more generalClosed by:
bb5235727a