- Ctrl + H
- Encontre o que:
\|(?=1\|)
- Substituir por:
\n
ou\r\n
depende da plataforma - Substituir todos
Explicação:
\| : a pipe, must be escaped because it has special meaning in regex
(?= : start lookahead, a zero length assertion to be sure we have after
1 : the digit 1
\| : a pipe
) : end lookahead
Substituição:
\n : linebreak for linux files
ou
\r\n : linebreak for windows
- check Embrulhe
- Verificar expressão regular
- NÃO VERIFIQUE
. matches newline
Resultado para o exemplo dado:
1|name|surname|address
1|name|surname|address