coolblaze03's picture
Upload folder using huggingface_hub
1514a0b verified
Raw
History Blame Contribute Delete
176 Bytes
import re
def text_match_wordz_middle(text):
patterns = '\\Bz\\B'
if re.search(patterns, text):
return 'Found a match!'
else:
return 'Not matched!'