search()
String.search()は文字列の検索をおこない、検索結果がある場合はその位置を、ない場合は-1を返します。
"abcd".search("a");//0
"abcd".search("b");//1
"abcd".search("e");//-1
文字列の検索には正規表現を利用することも可能です。
"abcd".search(/.d/);//2
登録日 : 2013年08月31日 最終更新日 : 2013年8月31日
同じカテゴリー(String)のエントリー
- valueOf()
- toUpperCase()
- toString()
- toLowerCase()
- toLocaleUpperCase()
- toLocaleLowerCase()
- substring()
- substr()
- split()
- slice()
- search()
- replace()
- match()
- contains()
- endsWith()
- startsWith()
- localeCompare()
- lastIndexOf()
- indexOf()
- fromCharCode()
- concat()
- charCodeAt()
- charAt()
- trimLeft()
- trimRight()
- trim()
- length