I've tried searching for this, but couldn't find one that worked for what I needed it for.
I'm trying to find [DLC] in a line, and move it to the end of that line.
I've tried searching for this, but couldn't find one that worked for what I needed it for.
I'm trying to find [DLC] in a line, and move it to the end of that line.
You can try this regex:
^(.*?)(\[DLC\])(.*)$
and replace with
$1$3$2
Explanation:
The regex splits the string into three groups:
and reorders the groups in the order of 1, 3, 2