I have a string, an array of words to be searched for:
strng = "I have been working here since last six months"
text = ["since", "till", "until"]
result = "since"
I want to search for every word in array, in strng
and when any of it is found in the strng, it must be assigned to result. how to do it?
I am using .search()
for searching a single word, but how to search for multiple words? please help.
I am a Newbie.
You can either loop over your array of keywords or use a regular expression. The former is simple, the latter is more elegant ;-)
Your regex should be something like "/since|till|until/", but I'm not 100% sure right now. You should research a bit about regexes if you're planning to use them, here's a starter: http://www.w3schools.com/js/js_obj_regexp.asp
EDIT: Just tried it and refreshed my memory. The simplest solution is using .match(), not search(). It's boils down to a one-liner then:
strng.match(/since|till|until/) // returns ["since"]
Using .match() gives you an array with all occurrences of your pattern, in this case the first and only match is the first element of that array.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With