replace()
String.replace()は正規表現と一致する文字列を置き換えるメソッドです。
"barfoo".replace("bar","foo");//"foofoo"
単純な文字列の置き換えのみだけでなく正規表現を利用して置き換えることも可能です。
"barfoo".replace(/o/,"1");//"barf1o"
登録日 : 2013年08月20日 最終更新日 : 2013年8月20日
同じカテゴリー(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