Snippet to convert string to array of words

This commit is contained in:
Arjun Mahishi
2017-12-20 00:23:56 +05:30
parent d7c06700f8
commit 0537140cb6

View File

@ -0,0 +1,14 @@
### stringToArrayOfWords
Converts a given string into an array of words
First create an array of dirt that you want to remove from the string. Then replace each dirt with an empty string. Use `String.split(' ')` to conver string to array with the space a delimiter.
```js
const stringToArray = str =>{
[".", ",", "?", "!", "& ", "(", ")", "[", "]"].map(d => str = str.replace(d, ""));
return str.split(" ");
}
// stringToArrayOfWords("I love javaScript!!") -> ["I", "love", "javaScript"]
```