1

I am trying to figure out how to perform a find and replace with sequential data. An example of the data:

Filename "voice/voice_001.ogg"

Filename "voice/voice_002.ogg"

I wish to 'move' by using find and replace to:

"voice/voice_001.ogg" Filename

"voice/voice_002.ogg" Filename

Is there anyway to do this? I have been trying to do so by using notepad++ but can't get it done.

Thanks in advance.

famakki1
  • 21
  • 2
  • 7

1 Answers1

1

Using regex mode find/replace:

Find:

(Filename) ("[^\s]*")

Replace:

$2 $1
Tim Biegeleisen
  • 502,043
  • 27
  • 286
  • 360