I´m not very fluent in REGEX, but I have this sequence:
/(.{3})/g
As far as I know, this would match every 3 characters starting at the beggining of the string.
How can I start from the end of string and insert a '.' (period character) between them?
Extra info: The user will input numbers and I would like it to insert a '.' after every 3 numbers. It´s a custom made Mask I´m building for a specific project.
Thanks