I am using Beyond Compare to compare two files and need help with a regex to ignore anything past 5 decimal places, eg -
1.0000000|
so the 6th figure onwards would be ignored seperated with |
I thought this would work \.\d\{5\}\|
but it doesn't, any help would be appreciated