Is there a reason behind 100 characters regex limitation?
I was trying to use a regex for validation of Romanian personal identification numbers (CNP) and I got the following error attached.
I think this limit should be increased a little.
Is there a reason behind 100 characters regex limitation?
I was trying to use a regex for validation of Romanian personal identification numbers (CNP) and I got the following error attached.
I think this limit should be increased a little.
Yes, please!
And if possible not only in the Formfield configuration, but also in the OCR-Templates.
In webcon 2022.1.4.404
you don't have prompt like you, but it just it cut length of "code"...
[code]
^[0-2]{1}[0-9]{1}:[0-5]{1}[0-9]{1}-[0-2]{1}[0-9]{1}:[0-5]{1}[0-9]{1}$
[/code]
but this is to long :/
[code]
^((0[0-9]|1[0-9]|2[0-2]):[0-5][0-9]-(0[0-9]|1[0-9]|2[0-3]):[0-5][0-9])|(23:00-23:[01-5][0-9]|23:00-23:00)$
[/code]
---edit--
BTW:
https://community.webcon.com/posts/post/regular-expressions-business-applications/268/4
the article have got missing pictures ...