programming-examples/python/Regular_Expression/Find all words starting with 'a' or 'e' in a given string.py
2019-11-15 12:59:38 +01:00

7 lines
326 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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)