Hi. I do need to detect all the number values that do have decimals with two places and generate a True boolean value for them, but I can’t find a proper way to do so. How can I use the Regex format to achieve this goal?
This: .\d\d will give false positives for numbers with 2.d.p in.
I can’t remember the particulars of the flavour of Regex Grasshopper uses, but fairly universally a full stop (or dot, .) matches any character (except new lines and other special chars etc., depending on your special settings).
To only match a literal full stop you need to escape it: \.