Answers for "python regex all characters"

1

regex in python to obtain only the string in python

import re
print(" ".join(re.findall("[a-zA-Z]","your string")))
Posted by: Guest on February-26-2021
-1

regex find all sentences python

text = "This is a good sentence. This is another good 1! thanks"

sentences = re.findall(r"[A-Z].*?(.s|?s|!s)", text)
Posted by: Guest on October-19-2021

Code answers related to "python regex all characters"

Python Answers by Framework

Browse Popular Code Answers by Language