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
-