Hello guys I need a bit help I neeed to switch words position on notepad++ they are like this.
Grands|Albz
So I wanna to switch grand with albz to to other side without moving | to make it like this
Albz|Grands
Whloe of the text any help please?
Hello guys I need a bit help I neeed to switch words position on notepad++ they are like this.
Grands|Albz
So I wanna to switch grand with albz to to other side without moving | to make it like this
Albz|Grands
Whloe of the text any help please?
Copyright © 2021 Jogjafile Inc.
do
1)
cntrl+f2) go to the
replacetab3) type
Grands|Albzinfind what:4) type
Albz|GrandsinReplace with:5) Click on
Replace Allbox(3rd from the top in right side in the pane) to replace all the occurrence.If you want to make it generalize try below solution: do
1)
cntrl+f2) go to the
replacetab3) check the check box that say
Regular expressionat the bottom left corner.4) type
([A-Za-z]\w+)\|([A-Za-z]\w+)infind what:5) type
\2\|\1inReplace with:6) Click on
Replace Allbox(3rd from the top in right side in the pane) to replace all the occurrence.