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

132
Visualizações
Support Regex that has more than one forward slash in domain

I need to support endpoints such as

/myendpoint:
/v1/myendpoint:
/v3/someotherendpoint:

This regex:

const regexPattern = '/[a-zA-Z0-9-]+:';

Only answers to /myendpoint:

How can we do an or operation to support both cases ?

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

0

If you just need to test if it matches or not, you can just use a repeated pattern, like this:

const tests = ['/a', '/a/b/c', 'nope'];
const pattern = /^(\/[0-9a-z-]+)+$/i;

tests.forEach(str => console.log(str, pattern.test(str)));

If you want to match each part, it gets a lot trickier and uglier, and you'd better off testing if it works then just use split('/') to get the parts.

about 4 years ago · Juan Pablo Isaza Relatório

0

Just make it something like recursive your existing solution for its multiple instance.

Example: (\/[a-zA-Z0-9-]+)*:

Play: https://regexr.com/6jka3

The character * in a regular expression means "match the preceding character zero or many times"

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