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.
次のように、2 つのコメントの間の文字列を置き換えようとします。
<span>Just <!--{-->250<!--}--> characters available!</span>
250別の番号に変更したいです。
250
どうやってやるの?
この正規表現を試してください:
text.replace(/(<!--\{-->)(\d+)(<!--\}-->)/, '$1replaced$3'));
正確な JavaScript 構文についてはわかりませんが、以下は数字だけで一致するはずです (それはあなたが望むものですよね? 「250」を置き換えたいだけですか?)
(?<=<!\-\-\{\-\->)\d+(?=<\!\-\-\}\-\->)