Matching Character Ranges

Sort by

recency

|

97 Discussions

|

  • + 0 comments

    I got test case 6 wrong. I used ^[a-z][1-9][^a-z][^A-Z][A-Z] using python. The input for it is a0$?ZWe

  • + 0 comments
    Regex_Pattern = r'^[a-z][1-9][^a-z][^A-Z][A-Z].*$'
    
    import re
    
    print(str(bool(re.search(Regex_Pattern, input()))).lower())
    
  • + 0 comments

    Regex_Pattern = r'^[a-z][1-9][^a-z][^A-Z][A-Z].*$'

  • + 0 comments

    Regex is such a powerful tool! It makes finding, matching, and manipulating text so much easier — though it can feel like a puzzle at first. skyexchange ID

  • + 0 comments

    Character classes in regex are incredibly useful for matching specific groups of characters. They simplify patterns and make matching ranges or sets of characters so much easier! Iplwin registration