How to match sequences of uppercase letters from a string with regular expression in Python

1 Answer

0 votes
import re     

s = 'xyx - aaXY.aaAyyy-aABCaxYxxyYaaa.'    
pattern = '[A-Z]+'  # sequences of uppercase letters

for match in re.findall(pattern, s):         
    print('Found: {!r}'.format(match))
    
    
'''
run:

Found: 'XY'
Found: 'A'
Found: 'ABC'
Found: 'Y'
Found: 'Y'

'''

 



answered Apr 27, 2019 by avibootz
...