Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
7b00db7
Patch.
Maikuolan Oct 18, 2017
88c778f
Fixed typos
jovibor Aug 11, 2019
816b738
Start of Translation in German language.
bueltge Aug 29, 2019
e3a1744
Update path to self file and image
bueltge Aug 29, 2019
b0f6cf6
Remove Link we are on the file
bueltge Aug 29, 2019
21cf6ae
Add link to German translation.
bueltge Aug 29, 2019
8166071
Add more translations
bueltge Aug 29, 2019
65c7e3e
Fix typos
Oct 8, 2019
7e5a3f4
دو پاراگراف آغاز کاری
hjavadish Oct 27, 2019
3faa619
Update README-fa.md
hjavadish Oct 27, 2019
f808849
Update README-fa.md
hjavadish Oct 27, 2019
a817604
paragraph #1
hjavadish Oct 27, 2019
fa254f2
اصلاح لینک به برگردان فارسی
hjavadish Oct 27, 2019
dd12d9f
Merge pull request #179 from hjavadish/master
ziishaned Nov 4, 2019
d1ae5ee
Merge pull request #172 from rruc/master
ziishaned Nov 11, 2019
2411b31
5.1, 5.2, 5.3 hyperlink fix
JigaoLuo Jan 6, 2020
65cbea9
Update README-cn.md
donotrsp Mar 7, 2020
6436a42
Update README-cn.md
donotrsp Mar 7, 2020
18c6bf5
Improve grammar and punctuation
tommcandrew Mar 10, 2020
060cf5c
Correct grammar in intro title
tommcandrew Mar 10, 2020
41e1eef
Make section 2.1 title singular
tommcandrew Mar 10, 2020
f7e4c53
Make section 4 titles singular
tommcandrew Mar 10, 2020
a287bb6
Merge pull request #197 from tommcandrew/master
ziishaned Mar 10, 2020
5ffb2a0
Update README-ko.md
wicksome Mar 18, 2020
26a9e2d
Update my current status
bueltge Mar 19, 2020
ceb3d3b
modify the desc of {n,m}
Apr 1, 2020
c9c8ef7
Merge pull request #203 from cuiyaocool/master
ziishaned Apr 1, 2020
ed9e5af
Merge pull request #196 from wakeheart/master
ziishaned Apr 1, 2020
b617729
Update chanpte 2
bueltge Apr 20, 2020
fc63d63
Update anker links
bueltge Apr 20, 2020
b351c28
chanpter 2.2 done
bueltge Apr 20, 2020
4fc2c9e
Improve grammar and wording of previous sections, begin working on mi…
JohnnyJayJay Jun 24, 2020
e21f70b
Continue work until flags
JohnnyJayJay Jun 25, 2020
18293bc
Add information about i flag
JohnnyJayJay Jun 25, 2020
c63cca4
finish remaining translation
JohnnyJayJay Jun 26, 2020
f0a00dc
Adjust table of contents and a few titles
JohnnyJayJay Jun 26, 2020
0b5391f
Make contributing section grammar consistent
JohnnyJayJay Jun 26, 2020
daf704e
Fix old grammar in early sections
JohnnyJayJay Jun 26, 2020
c79146b
Merge pull request #1 from JohnnyJayJay/master
bueltge Jun 28, 2020
3d1c832
Merge pull request #212 from bueltge/master
ziishaned Jun 28, 2020
21df516
Merge pull request #193 from cakebytheoceanLuo/master
ziishaned Jun 28, 2020
1c4ae9e
Merge pull request #200 from wicksome/patch-6
ziishaned Jun 28, 2020
250cbe2
Merge pull request #160 from jovibor/master
ziishaned Jun 28, 2020
dd268b1
Merge remote-tracking branch 'origin/master' into pr/98
janosorcsik Jun 29, 2020
e3945a4
fix typo
janosorcsik Jun 29, 2020
0a1960f
Merge pull request #213 from janosorcsik/pr/98
ziishaned Jun 30, 2020
006b7a1
Update Readme.md
danieldeandradelopes Jul 4, 2020
0bd35b8
Merge pull request #215 from danieldeandradelopes/patch-1
ziishaned Jul 4, 2020
ed4ce1d
Merge pull request #2 from ziishaned/master
bueltge Aug 13, 2020
5dc6310
Small improvements for clean German language
bueltge Oct 2, 2020
5dacd8a
Merge pull request #221 from bueltge/master
ziishaned Oct 3, 2020
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ character `e`.
In regular expression braces that are also called quantifiers are used to
specify the number of times that a character or a group of characters can be
repeated. For example, the regular expression `[0-9]{2,3}` means: Match at least
2 digits but not more than 3 ( characters in the range of 0 to 9).
2 digits but not more than 3 (characters in the range of 0 to 9).

<pre>
"[0-9]{2,3}" => The number was 9.<a href="#learn-regex"><strong>999</strong></a>7 but we rounded it off to <a href="#learn-regex"><strong>10</strong></a>.0.
Expand Down Expand Up @@ -422,7 +422,7 @@ shorthand character sets are as follows:
## 4. Lookaround

Lookbehind and lookahead (also called lookaround) are specific types of
***non-capturing groups*** (Used to match the pattern but not included in matching
***non-capturing groups*** (used to match the pattern but not included in matching
list). Lookarounds are used when we have the condition that this pattern is
preceded or followed by another certain pattern. For example, we want to get all
numbers that are preceded by `$` character from the following input string
Expand Down Expand Up @@ -579,8 +579,8 @@ at the end of each line in a string.
[Test the regular expression](https://regex101.com/r/E88WE2/1)

## 6. Greedy vs lazy matching
By default regex will do greedy matching , means it will match as long as
possible. we can use `?` to match in lazy way means as short as possible
By default regex will do greedy matching which means it will match as long as
possible. We can use `?` to match in lazy way which means as short as possible.

<pre>
"/(.*at)/" => <a href="#learn-regex"><strong>The fat cat sat on the mat</strong></a>. </pre>
Expand Down