How to separate specific text with notepad?
-
Hello, @yuly-pmem, @ani-rodet, @terry-r and All,
Ah OK ! So, here are, below, all the regexes to achieve the suppression of
1or2columns, from an original3-columns table, separated with colons (:)Let’s imagine the initial
3-columns table, below :cell A1:cell B1:cell C1 cell A2:cell B2:cell C2 cell A3:cell B3:cell C3Then :
- With the regex S/R :
SEARCH
:[^:\r\n]+$REPLACE
Leave EMPTYOnly columns
AandBremain :cell A1:cell B1 cell A2:cell B2 cell A3:cell B3- With the regex S/R
SEARCH
(?-s):.+(?=:)REPLACE
Leave EMPTYOnly columns
AandCremain :cell A1:cell C1 cell A2:cell C2 cell A3:cell C3- With the regex S/R :
SEARCH
(?-s)^.+?:(?=.+:)REPLACE
Leave EMPTYOnly columns
BandCremain :cell B1:cell C1 cell B2:cell C2 cell B3:cell C3- With the regex S/R :
SEARCH
(?-s):.+$REPLACE
Leave EMPTYOnly column
Aremains :cell A1 cell A2 cell A3- With the regex S/R :
SEARCH
(?-s).+:(.+):.+REPLACE
\1Only column
Bremains :cell B1 cell B2 cell B3- With the regex S/R :
SEARCH
(?-s)^.+:REPLACE
Leave EMPTYOnly column
Cremains :cell C1 cell C2 cell C3Cheers,
guy038
-
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login