Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Javascriptの文字列の最初の数字とその後のすべてを削除する正規表現を書く方法は?
例:
John.Doe12@somewhere.net
に
ジョン・ドウ
.replace()次のように使用できます。
.replace()
var result = str.replace(/\d+.*$/, "");
作業例: http://jsfiddle.net/jfriend00/97kMW/