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.
すべての価格を 0 に置き換える必要がある大きな価格表があります。価格表はこのスタイルで作成されています。
<Cost dollar="155"/> <Cost dollar="240"/>
そして、数字を 0 に置き換えたい。
私の試み:
<Cost dollar="([0-9])"/>
編集 :
によって解決
<Cost dollar="([0-9]*)"/>
探す:\d*
\d*
置換: 0
または、アスタリスクですでに行ったことを使用します[0-9]*
[0-9]*