Skip to content

Commit 1829b14

Browse files
Update README.md
1 parent 1ecc40e commit 1829b14

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -75,20 +75,20 @@ Very handy for making searches in strings and documents with specific type of pa
7575

7676
Python Regular Expression Quick Guide:
7777
```
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
8585
(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
8888
(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
9494
```

0 commit comments

Comments
 (0)