|
3 | 3 | [](https://www.npmjs.com/package/@rpearce/flexible-string-replace) [](https://www.npmjs.com/package/@rpearce/flexible-string-replace) [](https://travis-ci.org/rpearce/flexible-string-replace) [](https://coveralls.io/github/rpearce/flexible-string-replace?branch=master) [](https://codeclimate.com/github/rpearce/flexible-string-replace/maintainability)
|
4 | 4 |
|
5 | 5 | ## Links
|
6 |
| -* [`API Documentation`](./API.md) |
| 6 | +* [`Installation`](#installation) |
| 7 | +* [`Usage`](#usage) |
| 8 | +* [`All Contributors`](#contributors) |
7 | 9 | * [`Authors`](./AUTHORS)
|
8 | 10 | * [`Changelog`](./CHANGELOG.md)
|
9 | 11 | * [`Contributing`](./CONTRIBUTING.md)
|
10 | 12 | * [`Code of Conduct`](./CODE_OF_CONDUCT.md)
|
11 | 13 |
|
| 14 | +## Installation |
| 15 | +``` |
| 16 | +$ npm i @rpearce/flexible-string-replace |
| 17 | +``` |
| 18 | +or |
| 19 | +``` |
| 20 | +$ yarn add @rpearce/flexible-string-replace |
| 21 | +``` |
| 22 | + |
| 23 | +## Usage |
| 24 | +`flexible-string-replace` mirrors the functionality of |
| 25 | +[`String.prototype.replace`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace) |
| 26 | +with the following exceptions: |
| 27 | +* you can transform your match however you see fit |
| 28 | +* the return value is `[ * ]` – an Array of whatever type your `Replacement` is |
| 29 | + or returns. For example, if you pass it a function, then you'll get back a |
| 30 | + list of strings as well as your match transformations, whereas if you pass a |
| 31 | + string, you'll get back simply a list of strings with your replacement applied |
| 32 | +* the argument order is `(Pattern, Replacement, String)` so that if you'd like |
| 33 | + to [`curry`](https://ramdajs.com/docs/#curry) the function and partially apply |
| 34 | + the first two arguments, you can then reuse those over and over again with |
| 35 | + different strings |
| 36 | + |
| 37 | +Note: while these examples use some JSX, your matching function can return |
| 38 | +whatever you like. |
| 39 | + |
| 40 | +```js |
| 41 | +import flexibleStringReplace from '@rpearce/flexible-string-replace' |
| 42 | + |
| 43 | +const str = 'The rain in Spain falls mainly on the plain. Spain is nice.' |
| 44 | +const searchText = 'spain' |
| 45 | +const replacement = (match, offset) => <mark key={offset}>{match}</mark> |
| 46 | + |
| 47 | + |
| 48 | +// usage with RegExp pattern |
| 49 | +const pattern = new RegExp(searchText, 'igm') |
| 50 | +flexibleStringReplace(pattern, replacement, str) |
| 51 | +// [ |
| 52 | +// 'The rain in ', |
| 53 | +// <mark>Spain</mark>, |
| 54 | +// ' falls mainly on the plain. ', |
| 55 | +// <mark>Spain</mark>, |
| 56 | +// ' is nice.' |
| 57 | +// ] |
| 58 | + |
| 59 | + |
| 60 | +// usage with RegExp pattern and string Replacement |
| 61 | +const pattern = 'Spain' |
| 62 | +flexibleStringReplace(pattern, 'foobar', str) |
| 63 | +// [ |
| 64 | +// 'The rain in ', |
| 65 | +// 'foobar', |
| 66 | +// ' falls mainly on the plain. ', |
| 67 | +// 'foobar', |
| 68 | +// ' is nice.' |
| 69 | +// ] |
| 70 | + |
| 71 | + |
| 72 | +// usage with String pattern (no match) |
| 73 | +const pattern = 'spain' |
| 74 | +flexibleStringReplace(pattern, replacement, str) |
| 75 | +// ["The rain in Spain falls mainly on the plain. Spain is nice."] |
| 76 | + |
| 77 | + |
| 78 | +// usage with String pattern (match) |
| 79 | +const pattern = 'Spain' |
| 80 | +flexibleStringReplace(pattern, replacement, str) |
| 81 | +// [ |
| 82 | +// 'The rain in ', |
| 83 | +// <mark>Spain</mark>, |
| 84 | +// ' falls mainly on the plain. Spain is nice.', |
| 85 | +// ] |
| 86 | +``` |
| 87 | + |
12 | 88 | ## Contributors
|
13 | 89 |
|
14 | 90 | Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
15 | 91 |
|
16 | 92 | <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
17 |
| -<!-- prettier-ignore --> |
18 |
| -<table><tr><td align="center"><a href="https://robertwpearce.com"><img src="https://avatars2.githubusercontent.com/u/592876?v=4" width="100px;" alt="Robert Pearce"/><br /><sub><b>Robert Pearce</b></sub></a><br /><a href="https://github.com/rpearce/flexible-string-replace/commits?author=rpearce" title="Code">💻</a> <a href="#ideas-rpearce" title="Ideas, Planning, & Feedback">🤔</a></td></tr></table> |
| 93 | +<!-- prettier-ignore-start --> |
| 94 | +<!-- markdownlint-disable --> |
| 95 | +<table> |
| 96 | + <tr> |
| 97 | + <td align="center"><a href="https://robertwpearce.com"><img src="https://avatars2.githubusercontent.com/u/592876?v=4" width="100px;" alt=""/><br /><sub><b>Robert Pearce</b></sub></a><br /><a href="https://github.com/rpearce/flexible-string-replace/commits?author=rpearce" title="Code">💻</a> <a href="#ideas-rpearce" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/rpearce/flexible-string-replace/commits?author=rpearce" title="Tests">⚠️</a> <a href="#example-rpearce" title="Examples">💡</a> <a href="https://github.com/rpearce/flexible-string-replace/commits?author=rpearce" title="Documentation">📖</a></td> |
| 98 | + </tr> |
| 99 | +</table> |
19 | 100 |
|
| 101 | +<!-- markdownlint-enable --> |
| 102 | +<!-- prettier-ignore-end --> |
20 | 103 | <!-- ALL-CONTRIBUTORS-LIST:END -->
|
21 | 104 |
|
22 | 105 | This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
|
0 commit comments