-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdvanced_Regex.py
51 lines (40 loc) · 1.68 KB
/
Advanced_Regex.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import re
def rearrange_name(name):
result = re.search(r"^(\w*), (\w*)$", name)
if result is None:
return name
return "{} {}".format(result[2], result[1])
def rearrange_name1(name):
result = re.search(r"^([\w \.-]*), ([\w \.-]*)$", name)
if result is None:
return name
return "{} {}".format(result[2], result[1])
print(rearrange_name("Lovelace, Ada"))
print(rearrange_name("Ritchie, Dennis"))
print(rearrange_name("Hopper, Grace M."))
print(rearrange_name1("Hopper, Grace M."))
"""Repetition qualifiers"""
print(re.search(r"[a-zA-Z]{5}", "a ghost"))
print(re.search(r"[a-zA-Z]{5}", "a scary ghost appeared"))
print(re.findall(r"[a-zA-Z]{5}", "a scary ghost appeared"))
print(re.search(r"[a-zA-Z]{5,10}", "I really like strawberries"))
print(re.findall(r"[a-zA-Z]{5,10}", "I really like strawberries"))
"""Control full words"""
print(re.findall(r"\b[a-zA-Z]{5}\b", "a scary ghost appeared"))
print(re.findall(r"[a-zA-Z]{5,}", "I really like strawberries"))
print(re.search(r"s\w{,20}", "I really like strawberries"))
print(re.search(r"s\w{,4}", "I really like strawberries"))
def multi_vowel_words(text):
pattern = r"[\w]*[a+e+i+o+u+]{3,}[\w]*\b"
result = re.findall(pattern, text)
return result
print(multi_vowel_words("Life is beautiful"))
# ['beautiful']
print(multi_vowel_words("Obviously, the queen is courageous and gracious."))
# ['Obviously', 'queen', 'courageous', 'gracious']
print(multi_vowel_words("The rambunctious children had to sit quietly and await their delicious dinner."))
# ['rambunctious', 'quietly', 'delicious']
print(multi_vowel_words("The order of a data queue is First In First Out (FIFO)"))
# ['queue']
print(multi_vowel_words("Hello world!"))
# []