-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathverbal_expressions.py
52 lines (40 loc) · 1.06 KB
/
verbal_expressions.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
52
import re
class VerbalExpression:
def __init__(self):
self.raw_source = ''
def compile(self):
return re.compile(self.raw_source)
def start_of_line(self):
self.raw_source += '^'
return self
def maybe(self, letter):
self.raw_source += '(%s)?' % re.escape(letter)
return self
def find(self, word):
self.raw_source += '(%s)' % re.escape(word)
return self
def anything_but(self, letter):
self.raw_source += '[^%s]*' % re.escape(letter)
return self
def end_of_line(self):
self.raw_source += '$'
return self
def match(self, word):
return self.compile().match(word)
def source(self):
return self.raw_source
v = VerbalExpression()
a = (v.
start_of_line().
find('http').
maybe('s').
find('://').
maybe('www.').
anything_but(' ').
end_of_line())
test_url = 'https://www.google.com'
if a.match(test_url):
print('Valid URL')
else:
print('Invalid URL')
print(a.source())