- Ctrl + H
- Encontre o que:
.+?"UserId":(\d+)
- Substituir por:
$1\n
- check Embrulhe
- verificar expressão regular
- Substituir todos
Explicação:
.+? : 1 or more any character but newline, not greedy
"UserId" : literally
( : start group 1
\d+ : 1 or more digits
) : end group
Substituição:
$1 : content of group 1
\n : linefeed, you may change it into \r\n
Resultado para o exemplo dado:
242558405
242558405
170660795
170660795
,"EndpointType":"Avatar"},"InvitationId":0,"LastLocation":"Offline","PlaceId":null,"AbsolutePlaceURL":null,"IsOnline":false,"InGame":false,"InStudio":false,"IsFollowed":false,"FriendshipStatus":3,"IsDeleted":false},
Após esse primeiro passo, você deve excluir manualmente a última linha.
Então dá:
242558405
242558405
170660795
170660795