All Tags »
pcre »
string length
Sorry, but there are no more tags available to filter with.
-
I am using pcre regex. And i need to find out if two strings are of equal length or not. Any idea how it can be accomplish.
An example of match would be
abcd 1234
here abcd and 1234 will match because they have same length. but
abcd abcde
would not match because length is different.
I can only use regex for this purpose.