- Ctrl + H
- Encontre o que:
^"value":[^.]+\K\.
- Substituir por:
LEAVE EMPTY
- Desmarque o caso de correspondência
- check Embrulhe
- verificar expressão regular
- NÃO VERIFIQUE
. matches newline
- Substituir todos
Explicação:
^ : begining of line
"value": : literally
[^.]+ : 1 or more not dot
\K : forget all we have seen until this position
. : a dot
Resultado para o exemplo dado:
{
"source": "Source A",
"target": "Source B",
"idTarget": "3,345",
"strength": "0.5",
"value": "6335138"
}
{
"source": "Source C",
"target": "Source D",
"idTarget": "1,253",
"strength": "0.7",
"value": "5465238"
}