こんにちは、複数のファイルに以下のテキストがあり、Notepad++で変更したいと思います。私はインターネットと多くの「ガイド」を検索しましたが、まだ運がありません。
<ingredient id="57" count="10000000"/>
そして私はこのようにそれをしたい
<ingredient id="57" count="10000000" isTaxIngredient="true" />
カウントは常に整数です。
私はこれを探しています
<ingredient id="57" count="\d+"/>
すべてをこれに置き換えます
<ingredient id="57" count="\1" isTaxIngredient="true" />
私の表現はどうあるべきですか?