Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upSimple string replacement #418
Conversation
agrafix
added some commits
Oct 3, 2015
evancz
added
the
request
label
Nov 19, 2015
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment
Hide comment
evancz
Mar 7, 2018
Member
This should be in the next release https://github.com/elm-lang/core/blob/master/src/String.elm#L144-L154
With regex being in a separate package, it makes sense to cover the common case. That way folks do not have to reach for regex or parsers to do this sort of thing.
|
This should be in the next release https://github.com/elm-lang/core/blob/master/src/String.elm#L144-L154 With regex being in a separate package, it makes sense to cover the common case. That way folks do not have to reach for regex or parsers to do this sort of thing. |
evancz
closed this
Mar 7, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
agrafix commentedOct 3, 2015
I think simple string replacement w/o Regex would be a good addition to the core library for a simple search and replace.