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

240
Vistas
Regex for network service port definitions

my collegue and I try to build a Regex (Javascript) to validate an input field for a specific format. The field should be a comma seperated list of port declarations and could look like this:

TCP/53,UDP/53,TCP/10-20,UDP/20-30

We tried this regex:

/^[TCP/\d+,|UDP/\d+,|TCP/\d+\-\d+,|UDP/\d+\-\d+,]*[TCP/\d+|UDP/\d+|TCP/\d+\-\d+|UDP/\d+\-\d+]$/g

the regex matches, but also matches other strings as well, like this one:

TCP/53UDP53,TCP/10-20UDP20-30

Thanks for any guidance!

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

0

You don't need all those alternations, and the [ ] are not used for grouping like that. You can also make the - and digits part optional using grouping (?:...)?

To match that string format:

^(?:TCP|UDP)\/\d+(?:-\d+)?(?:,(?:TCP|UDP)\/\d+(?:-\d+)?)*$

The pattern matches:

  • ^ Start of string
  • (?:TCP|UDP) Match one of the alternatives
  • \/\d+(?:-\d+)? Match / 1+ digits and optionally - and 1+ digits
  • (?: Non capture group to repeat as a whole part
    • ,(?:TCP|UDP)\/\d+(?:-\d+)? Match a , and repeat the same pattern
  • )* Close non capture group and optionally repeat (If there should be at least 1 comma, change the * to +)
  • $ End of string

Regex demo

about 4 years ago · Juan Pablo Isaza Denunciar

0

Alternative: split up the string, use Array.filter and a relative simple RegExp for testing.

const valid = `TCP/53,UDP/53,TCP/10-20,UDP/20-30`;
const invalid = `TCP/53UDP53,TCP/10-20UDP20-30`;

console.log(`${valid} ok? ${checkInp(valid)}`);
console.log(`${invalid} ok? ${checkInp(invalid)}`);

function checkInp(str) {
  return str.split(`,`)
    .filter(v => /^(TCP|UDP)\/\d+(?:-\d+)*$/.test(v))
    .join(`,`)
    .length === str.length;
}

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