I want 2 regex mathing input string at one time:
<input type="text" pattern="(?=first match of whole string)(?=second match of whole string)" />
In the output I want only the RegEx /^(?=first match of whole string)(?=second match of whole string)$/
.
I saw similar post, but there must to be added .*
at the end of initial pattern
value, - it does not feet for my purpose.
Thanx