Matching Same Text Again & Again

Sort by

recency

|

70 Discussions

|

  • + 0 comments

    Regex_Pattern = r'^([a-z]\w\s\W\d\D[A-Z][a-zA-Z](?i:[aeiou])\S)\1'

  • + 0 comments
    Regex_Pattern = r'^([a-z])(\w)(\s)(\W)(\d)(\D)([A-Z])([a-zA-Z])([aeouiAEOUI])(\S)\1\2\3\4\5\6\7\8\9\10$'
    
  • + 0 comments
    Regex_Pattern = r'^([a-z])([\w])(\s)([\W])(\d)(\D)([A-Z])([a-zA_Z])([aeiouAEIOU])(\S)\1\2\3\4\5\6\7\8\9\10$'
    
    import re
    
    print(str(bool(re.search(Regex_Pattern, input()))).lower())
    
  • + 0 comments

    Amazing tried this on.

  • + 0 comments
    Regex_Pattern = r'([a-z])(\w+)(\s)(\W+)(\d)(\D)([A-Z])([a-zA-Z])([aeiouAEIOU])(\S)\1\2\3\4\5\6\7\8\9\10'