I have this pattern .*?[a-z]([a-z])([a-z])([a-z]).*?(\s+)(\d+)
from some online generator but it's not working.
I need pattern which allows:
"minimum 3 char length string, next single space, and next minimum 1 char integer" [abc 1] or the same but in different order "minimum 1 char integer, next single space, and next minimum 3 char length string" [3 gtf].