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.
例えば
var string = 'width="300" height="650"'
その文字列の高さを更新して、次のようなものを取得したいと思います
string = string.replace(/height="..."/g, 'height="150"'); //... as any symbol
高さの値を気にしない reg 式を作成して、新しいものに置き換える方法は?
ここでそれを試すことができます。例: JsFiddle
var string = 'width="300" height="650"'; string = string.replace(new RegExp(/height=\"[0-9]+\"/g), 'height="150"');
デモ
大文字と小文字を区別しない場合:
.replace(new RegExp(/height=\"[0-9]+\"/ gi ), 'height="150"');