@@ -75,20 +75,20 @@ Very handy for making searches in strings and documents with specific type of pa
75
75
76
76
Python Regular Expression Quick Guide:
77
77
```
78
- \ ^ Matches the beginning of a line
79
- \ $ Matches the end of the line
80
- \ . Matches any character
81
- \\ s Matches whitespace
82
- \\ S Matches any non-whitespace character
83
- \ * Repeats a character zero or more times
84
- \ *? Repeats a character zero or more times
78
+ ^ Matches the beginning of a line
79
+ $ Matches the end of the line
80
+ . Matches any character
81
+ \s Matches whitespace
82
+ \S Matches any non-whitespace character
83
+ * Repeats a character zero or more times
84
+ *? Repeats a character zero or more times
85
85
(non-greedy)
86
- \ + Repeats a character one or more times
87
- \ +? Repeats a character one or more times
86
+ + Repeats a character one or more times
87
+ +? Repeats a character one or more times
88
88
(non-greedy)
89
- \ [aeiou] Matches a single character in the listed set
90
- \ [^XYZ] Matches a single character not in the listed set
91
- \ [a-z0-9] The set of characters can include a range
92
- \ ( Indicates where string extraction is to start
93
- \ ) Indicates where string extraction is to end
89
+ [aeiou] Matches a single character in the listed set
90
+ [^XYZ] Matches a single character not in the listed set
91
+ [a-z0-9] The set of characters can include a range
92
+ ( Indicates where string extraction is to start
93
+ ) Indicates where string extraction is to end
94
94
```
0 commit comments