2014年4月10日 星期四

用 Javascript 判斷某字串中是否含有特定字串

在 Javascript 中若想尋找某字串是否含有特定字串時,該怎麼做呢? 答案就是藉由 match()indexOf() 這兩個 function 啦!以下就附上這兩個 function 的使用方法。

一. match() 的用法:
  1. var input = "Hello world!";
  2. alert( input.match("world") );  //  若不含有特定字串會回傳 null
要特別注意的是 match 還可傳入 regexp 的變數來做判斷,可參考 W3School 的說明。


二. indexOf() 的用法:
  1. var input = "Hello world!";
  2. alert( input.indexOf("world") );  //  若不含有特定字串會回傳 -1

沒有留言:

張貼留言