Need help with a text file
-
Need help with a text file. This is what i need:
From
path>./My disc.cue</path>
path>./My disc2.cue</path>To
path>./My disc/My disc.cue</path>
path>./My disc2/My disc2.cue</path> -
From the given example, the answer would be
tick regular expression
search for(?<=path>\.)(.+)(?=\.cue)
and replace with\1\1
Regex explanation is here.
-