How to to get the word at end of string with regular expression in Python

2 Answers

0 votes
import re     
 
s = 'python xyx 234 aa4!@!4XY.aaAyyy984a ABCa-xYxx3yYa java aa.'   
pattern = r'\w+\S*$'  # word at end of string
 
for match in re.findall(pattern, s):         
    print('Found: {!r}'.format(match))
     
     
'''
run:
 
Found: 'aa.'
 
'''

 



answered Apr 28, 2019 by avibootz
0 votes
import re     
  
s = 'python xyx 234 aa4!@!4XY.aaAyyy984a ABCa-xYxx3yYa java aa.'  
pattern = r'\w+\S*$'  # word at end of string
  
se = re.search(pattern, s)             

print(se)
print(se[0])

      
      
'''
run:
  
<_sre.SRE_Match object; span=(55, 58), match='aa.'>
aa.

'''

 



answered May 6, 2019 by avibootz
...