@PeterJones said in Move word with notpad++:
Here’s your freebie, since this was your first post. And I appreciate that you showed before-and-after data, even if you neglected the </> button to mark your text as plaintext. But as Terry was encouraging you, you will get better help (and learn more) if you put in more effort when asking for help.
So, in Regular Expression search mode,
: matches a literal colon \d+ matches one or more digits \. matches a literal dot/period/fullstop character putting () parentheses around an expression will save it in the next capture group numberAnd in the replacement, $1 references the first capture group number.
Putting that all together: put a colon and one or more digits in group#1 and the sequence of digits-dot-digits-dot-digits-dot-digits in group#2, and replace with group2-then-group1
FIND = (:\d+) (\d+\.\d+\.\d+\.\d+) REPLACE = $2$1----
Useful References Please Read Before Posting Template for Search/Replace Questions Formatting Forum Posts Notepad++ Online User Manual: Searching/Regex FAQ: Where to find other regular expressions (regex) documentation
Working !
thanks