Matching Start & End

  • + 0 comments
    Regex_Pattern = r"^\d{1}\w{4}\.$"	# Do not delete 'r'.
    
    import re
    

    python3 solution