Empty input

Specific RegEx 


Generate any regex pattern for any string you can think of with a click of a BUTTON. Click on the result to see more 🤖😏

 1  import re
      
 2  text = ' '
      
 3  pattern = r' '
      
 4  find_all = re.findall(pattern, text)
      
 5  print( find_all )