Skip to content

Commit f74f1a0

Browse files
committed
String.split: Improve documentation
- Add more examples - Fix typo
1 parent 3d3e2f7 commit f74f1a0

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ Bugfixes:
1212

1313
Other improvements:
1414

15+
- `split` (#165)
16+
- Add more examples.
17+
- Fix typo in documentation.
18+
1519
## [v6.0.1](https://github.com/purescript/purescript-strings/releases/tag/v6.0.1) - 2022-08-16
1620

1721
Bugfixes:

src/Data/String/Common.purs

+8-1
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,18 @@ foreign import replace :: Pattern -> Replacement -> String -> String
5656
-- | ```
5757
foreign import replaceAll :: Pattern -> Replacement -> String -> String
5858

59-
-- | Returns the substrings of the second string separated along occurences
59+
-- | Returns the substrings of the second string separated along occurrences
6060
-- | of the first string.
6161
-- |
6262
-- | ```purescript
63+
-- | -- single match
6364
-- | split (Pattern " ") "hello world" == ["hello", "world"]
65+
-- | -- multiple matches
66+
-- | split (Pattern " | ") "foo | bar | baz" == ["foo", "bar", "baz"]
67+
-- | -- no match
68+
-- | split (Pattern "baz") "foo bar" == ["foo bar"]
69+
-- | -- empty string
70+
-- | split (Pattern "") "foo bar" == ["f","o","o"," ","b","a","r"]
6471
-- | ```
6572
foreign import split :: Pattern -> String -> Array String
6673

test/Test/Data/String.purs

+4
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@ testString = do
9999
{ actual: S.split (Pattern "d") "abc"
100100
, expected: ["abc"]
101101
}
102+
assertEqual
103+
{ actual: S.split (Pattern "--") "a--b--c"
104+
, expected: ["a", "b", "c"]
105+
}
102106

103107
log "toLower"
104108
assertEqual

0 commit comments

Comments
 (0)