Be the first user to complete this post
|
Add to List |
Split a string in javascript when both comma and spaces are present
A common case in many situations is to split user input on either a comma or a space.
Quick answer
yourString.split(/s*[s,]s*/).filter(Boolean);
The above code splits the string even if there are multiple spaces or commas consecutively.
Explanation
Thefilter
function accepts a function as an argument and only adds elements to the result array if the function returns true.
In the case above, we pass the Boolean constructor as an argument. This returns false for all the empty strings that occur as a result of consecutive comma or spaces.Thats how you get an array of only the words you care about.
Also Read:
- Parse html response with fetch API
- es6 iterators and iterables - creating custom iterators
- Using es6 modules with simple examples
- Getting started with localStorage vs sessionStorage in html5
- Pure vs Impure functions