Skip to content

Commit b2f8974

Browse files
committed
up
1 parent 273e47b commit b2f8974

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

9-regular-expressions/02-regexp-methods/article.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ There are two sets of methods to deal with regular expressions.
1010

1111
Which method to use depends on what we'd like to do.
1212

13-
Methods become much easier to understand if we separate them by their use in real-life tasks:
13+
Methods become much easier to understand if we separate them by their use in real-life tasks.
14+
15+
So, here are general recipes, the details to follow:
1416

1517
**To search for all matches:**
1618

@@ -30,9 +32,7 @@ Use regexp `g` flag and:
3032
**To split the string by a separator:**
3133
- `str.split(str|reg)`
3234

33-
Now you get the details about every method in this chapter... But if you're reading for the first time, and want to know more about regexps - go ahead!
34-
35-
You may want to skip methods for now, move on to the next chapter, and then return here if something about a method is unclear.
35+
Now you can continue reading this chapter to get the details about every method... But if you're reading for the first time, then you probably want to know more about regexps. So you can move to the next chapter, and then return here if something about a method is unclear.
3636

3737
## str.search(reg)
3838

0 commit comments

Comments
 (0)