Como excluo o texto antes e depois de 1 caractere


0

Por exemplo, eu tenho:

Apple:123456789:pear
watermelon:57952161354:kfc

Como faço para excluir o texto anterior e posterior ao ":" para obter este:

123456789
57952161354

Respostas:


1
  • Ctrl+H
  • Encontre o que: ^[^:]+:([^:]+):[^:]+$
  • Substituir com: $1
  • check Wrap around
  • check Expressão regular
  • Replace all

Explicação:

^               # beginning of line
    [^:]+:      # 1 or more any character that is not colon followed by 1 colon
    ([^:]+)     # group 1, 1 or more any character that is not colon
    :[^:]+      # 1 colon followed by 1 or more any character that is not colon
$               # end of line

Substituição:

$1  # content of group 1 (i.e. the digits)

Resultado para um exemplo:

123456789
57952161354    

Você é o melhor!
Royzonneveld
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.