Hi,
I am trying to validate some XML files that contain many strings like this:
<Phrase id="e76a7a36-27cb-4d4a-abbf-a17e009a3b4f"
The ID between the quotes should always be 36 characters long, but I had an instance recently where one of them was longer.
What I would like to do is run a search to find any Phrase ID that is not 36 characters.
I can find 36 characters easily enough: <Phrase id=".{36}"
But how do I say More or Less than 36?
I'm using UltraEdit 16.10.0.1028 and my preferred regex engine is Perl (but I'm happy to accept a solution in any engine).
... or better still:
Is it possible to search for NOT 36 characters but all characters must be valid hex or dashes?
Thanks
I am trying to validate some XML files that contain many strings like this:
<Phrase id="e76a7a36-27cb-4d4a-abbf-a17e009a3b4f"
The ID between the quotes should always be 36 characters long, but I had an instance recently where one of them was longer.
What I would like to do is run a search to find any Phrase ID that is not 36 characters.
I can find 36 characters easily enough: <Phrase id=".{36}"
But how do I say More or Less than 36?
I'm using UltraEdit 16.10.0.1028 and my preferred regex engine is Perl (but I'm happy to accept a solution in any engine).
... or better still:
Is it possible to search for NOT 36 characters but all characters must be valid hex or dashes?
Thanks