Advertisement
fbinnzhivko

Untitled

Oct 4th, 2016
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function aza(input) {
  2.  
  3.     let string = input[0].toLowerCase();        // case insensitive
  4.     let searchedWord = input[1].toLowerCase();  // case insensitive
  5.  
  6.     let inside = `\\b${searchedWord}\\b`;
  7.     let regex = string.match(new RegExp(inside, 'g'));
  8.  
  9.     console.log(regex.length);
  10.  
  11. }
  12. //aza(['The waterfall was so high, that the child couldn’t see its peak.', 'the']);
  13. //aza(['Marine mammal training is the training and caring for marine life such as, dolphins, killer whales, sea lions, walruses, and other marine mammals. It is also a duty of the trainer to do mental and physical exercises to keep the animal healthy and happy.', 'ma']);
  14. aza(['There was one. Therefore I bought it. I wouldn�t buy it otherwise.', 'there']);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement