Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

174
Vistas
how to check string "should not contain leading, trailing, and mutliple commas in middle"

I am able to construct regex for leading and trailing.

(^[,\s]+)|([,\s]+$)

But I don't know to how to negate it, it should check for non-leading and non-trailing commas.

And it should not contain double or more commas (near to each other) in the middle.

// example - should return following values
1. "orange" - true
2. "apple, orange" - true
3. "apple,     orange" - true
4. "apple,orange" - true
5. "apple, orange," - false
6. ",orange, apple" - false
8. "orange,, apple" - false
9. "apple,,orange" - false

Any here does know how to achieve. thanks

about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

I would just use this general pattern:

^[^,]+(?:\s*,\s*[^,]+)*$

This will match a leading term, containing no commas, followed by zero or more commas then non comma terms.

JavaScript code:

var inputs = ["orange", "apple, orange", "apple,     orange", "apple,orange", "apple, orange,", ",orange, apple", "orange,, apple", "apple,,orange"];
for (var i=0; i < inputs.length; ++i) {
    console.log(inputs[i] + " => " + /^[^,]+(?:\s*,\s*[^,]+)*$/.test(inputs[i]));
}

about 4 years ago · Juan Pablo Isaza Denunciar

0

You could check if the string does not match this basic pattern:

^\s*,|,\s*,|,\s*$

See demo at regex101 or JS demo at tio.run

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda