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

128
Vistas
Using ?= in javascript regular expression

in javascript

console.log(/x(?=b[1-9])/.test('xb2')); // true

console.log(/x(?=b[1-9])$/.test('xb2')); // false

what is difference ?

about 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

The first pattern x(?=b[1-9]) matches x which is then followed by b and a digit. The input xb2 matches this.

The second pattern x(?=b[1-9])$ is conflicting, and can never match anything. This pattern says to match:

x           the letter x
(?=b[1-9])  assert that b and 1-9 follows
$           match end of the input

It is impossible for b[1-9] to follow x while at the same time x is the end of the input. Use the first version in your question.

about 4 years ago · Santiago Trujillo 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