Use algo como @\S+
.
Onde:
-
@
significa literalmente "@" -
\S+
significa 1 ou mais qualquer caractere que não seja um espaço.
Edite de acordo com o comentário:
Usando o notepad ++, você pode fazer de uma só vez: (Ele também funciona no SublimeText)
- Ctrl + H
- Encontre o que:
(?:^|\G)[^@]+(@\S+|$)
- Substituir por:
$1\n
- check Embrulhe
- verificar expressão regular
- Substituir todos
Explicação:
(?: : non capture group
^ : beginning of line
| : R
\G : position of last match
) : end group
[^@]+ : 1 or more any character that is not @
( : start group 1
@\S+ : @ followed by any non space character
| : OR
$ : end of line
) : end group 1
Substituição:
$1 : content of group 1
\n : line feed, you could change it for the linebreak you need
Resultado para o exemplo dado:
@aaw_sg
@nullaudio
@headphones.cz