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

103
Vistas
Remove last dots from characters in jquery

How to remove only the last dots in characters in jquery?

Example:

1..

1.2.

Expected result:

1

1.2

My code:

var maskedNumber = $(this).find('input.CategoryData');

var maskedNumberValue = $(maskedNumber).val().replace(/[^0-9.]/g, '').replace('.', 'x').replace('x', '.').replace(/[^\d.-]/g, '');

console.log(maskedNumberValue.slice(0, -1))

How do I solve this problem? Thanks

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

0

You can use regex replace for that:

function removeLastDot(value) {
  return value.replace(/\.*$/, '')
}

console.log(removeLastDot('1..'))
console.log(removeLastDot('1.2.'))

In the example I use \.*$ regex:

  • $ - means that I want replace at the end of string
  • \.* - means that I want to match any number for . symbol (it is escaped cause . is special symbol in regex)
about 4 years ago · Juan Pablo Isaza Denunciar

0

You can traverse the string with forEach and store the last index of any number in a variable. Then slice up to that variable.

let lastDigitIndex = 0;
for (let i = 0; i < str.length; i++) {
   let c = str[i];
   if (c >= '0' && c <= '9') lastDigitIndex = i;
};
console.log(str.slice(0, lastDigitIndex-1));

This will be an optimal solution.

about 4 years ago · Juan Pablo Isaza Denunciar

0

Add replace(/\.*$/g, '') to match one or more dots at the end of the string.

So your code would be like this:

var maskedNumberValue = $(maskedNumber).val().replace(/[^0-9.]/g, '').replace('.', 'x').replace('x', '.').replace(/[^\d.-]/g, '').replace(/\.*$/g, '');
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