特定の行の最初のテキストを置き換えるにはどうすればいいですか
前の例:
<p>– Your mother created a song?</p>
<p>– She was a pianist.</p>
<p>– Okay then, let us hear the song.</p>
そして私はこうなりたい
<p>"Your mother created a song?"
<p>"She was a pianist."</p>
<p>"Okay then, let us hear the song."</p>
正規表現を使用して、選択したテキスト領域でこれを行う方法はありますか?
答え1
- Ctrl+H
- 検索対象:
(?<=<p>)– (.+)(?=</p>)
- と置換する:
"$1"
- チェック ラップアラウンド
- 正規表現をチェック
- チェックを外す
. matches newline
- Replace all
説明:
(?<=<p>) # positive lookbehind, make sure we have <p> before
– # – character followed by a space
(.+) # group 1, any character nut newline
(?=</p>) # positive lookahead, make sure we have </p> after
交換:
" # a double quote
$1 # content of group 1, the sentence
" # a double quote
与えられた例の結果:
<p>"Your mother created a song?"</p>
<p>"She was a pianist."</p>
<p>"Okay then, let us hear the song."</p>