We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents adfe682 + ceede64 commit 6ea42cdCopy full SHA for 6ea42cd
README.md
@@ -16,14 +16,15 @@ verbal_expression = VerEx()
16
```python
17
# Create an example of how to test for correctly formed URLs
18
verbal_expression = VerEx()
19
-tester = verbal_expression. \
20
- start_of_line(). \
21
- find('http'). \
22
- maybe('s'). \
23
- find('://'). \
24
- maybe('www.'). \
25
- anything_but(' '). \
+tester = (verbal_expression.
+ start_of_line().
+ find('http').
+ maybe('s').
+ find('://').
+ maybe('www.').
+ anything_but(' ').
26
end_of_line()
27
+)
28
29
# Create an example URL
30
test_url = "https://www.google.com"
0 commit comments