programming-examples/python/Regular_Expression/Find all words starting with 'a' or 'e' in a given string.py

7 lines
326 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
import re
# Input.
text = "The following example creates an ArrayList with a capacity of 50 elements. Four elements are then added to the ArrayList and the ArrayList is trimmed accordingly."
#find all the words starting with a or e
list = re.findall("[ae]\w+", text)
# Print result.
print(list)