Hi Robert,
This search should fit your needs and find all those numbers with spaces, commas and dots as thousands separators in the source text that do not contain any separator in target.
Source term: "([1-9]{,3})=1[,\.[:space:]]?(([0-9]{3})+)=2"
Target term: -@1[,\.[:space:]]@2
PowerSearch: On.
Search Mode: Regular Expressions.
([1-9]{,3})=1
means up to 3 digits between 0 and 9.
[,.[:space:]]? means 0 or 1 instance of comma, dot or space.
(([0-9]{3},?)+)=2 means 3 digits between 0 and 9.
Please note that you are also searching numbers that do not contain any thousand separator in source.
Regards,
Oscar.