秀丸で特定の文字より前を抜き出したい時、または
特定の文字より後を抜き出したい時は簡単な正規表現を使うのが便利。
「hello」より後を抜き出す時
(?<=hello)(.*)
「hello」より前を抜き出す時
(.*)(?=hello)
秀丸を使いこなすと作業効率が上がると思います。
Go to list of users who liked
More than 5 years have passed since last update.
秀丸で特定の文字より前を抜き出したい時、または
特定の文字より後を抜き出したい時は簡単な正規表現を使うのが便利。
「hello」より後を抜き出す時
(?<=hello)(.*)
「hello」より前を抜き出す時
(.*)(?=hello)
秀丸を使いこなすと作業効率が上がると思います。
Register as a new user and use Qiita more conveniently
Go to list of users who liked