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.
次のような正規表現検索があります。
'\d*.\d*, \d*.\d*'
'とを変更したい,が、d* はそのままにしておく。これは崇高なテキストで可能ですか?そうでない場合、これを行う最も簡単な方法は何ですか?
'
,
これは、正規表現が利用できる他のほとんどの場所と同じように機能します。
パターンの残したい部分をグループ化し、置換で参照する
パターン:'(\d*.\d*), (\d*.\d*)' 交換:$1 $2
'(\d*.\d*), (\d*.\d*)'
$1 $2
'この例では、とを削除します。,