I have a project with hundreds of expressions like this one:
Source: size of 31.49"×25.98"
The localized translation should be: 31,49 x 25,98 pulg.
This is what I'm using in the QA check: Source is [0-9]\.[0-9]; target is [0-9]\,[0-9]; Regex condition: 'Report if both source and target match but with different coun'
Sometimes there's 2 or more decimal numbers. However, this doesn't work when there's only 1 instance of the expression. So if the segment only has 1 number, the condition is not triggered. I would have to use 'Report if source matches but not the target'.
Is there an explanation for this and what would be the difference between these two conditions for this particular case.
Thanks.