Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

130
Visualizações
Don't match if there is an extra period at the end of a sentence

I'm using this regex:

\n\n|(?<=[^,][."*?!\^])(?!\.)[ ](?=["*]?[A-Z])

To match the empty space after a sentence (I'm using [ ] to show you the matches):

First sentence.[ ]Middle a sentence..[ ]Last sentence.

First sentence?[ ]Middle a sentence!.[ ]Last sentence.

"First sentence," Middle a sentence..[ ]Last sentence.

"First sentence."[ ]"Middle a sentence.".[ ]Last sentence.

It's worked fine so far. But now I want the regex not to match when there are .., ?., !., ."., etc. at the end of a sentence. In other words, when there's an extra period:

First sentence.[ ]Middle a sentence.. Last sentence.

First sentence?[ ]Middle a sentence!. Last sentence.

"First sentence," Middle a sentence.. Last sentence.

"First sentence."[ ]"Middle a sentence.". Last sentence.

I thought adding an (?!\.) would do the trick:

\n\n|(?<=[^,][."*?!\^])(?!\.)[ ](?=["*]?[A-Z])

But as you can see here, it's still matching the empty spaces after the extra period.

Why is this and how to fix it?

about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

You can extend this negated class [^,] with all other characters that you don't want to occur as one-before-last character in a sentence.

So like: [^,.]

If however you want to allow ." to end a sentence, and only want to avoid two points (or !. and ".), then put your look around condition there as look-back:

(?<=[^,][."*?!\^])(?<![.!?"]\.)

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda