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

265
Vistas
Regex: How to match all uppercase characters of non-ascii string

I have strings like Japan Company, Chinese Company, and this regex /([A-Z])/g to get all uppercase characters then joining the result to make an emission of them. But when the input string is not in English letters then the regex does not work.

let string = "Japan Company";
console.log(string.match(/[A-Z]/g).join('')); // JC

But when I have a string like 日本の会社

let string = "日本の会社";
console.log(string.match(/[A-Z]/g).join(''));

This throws an exception as the result of the string.match(/[A-Z]/g) is null.

As I am trying to make elision to these strings and hieroglyphs do not have uppercases, the regex should match only first characters of each word where words are separated by spaces.

What generic regex should I use for this?

Something like POSIX's [:upper:] but this does not work for JavaScript regex engine.

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

0

You can use

(string.match(/(?<!\S)\S/g) || [string]).join('')

See the JavaScript demo:

const strings = ["Japan Company", "japan company", "日本の会社"];
for (const string of strings) {
    console.log(string, '=>', (string.match(/(?<!\S)\S/g) || [string]).join('').toUpperCase())
}

The (?<!\S)\S regex matches a non-whitespace char at the start of string or after a whitespace char.

A Safari, non-lookbehind, pattern:

var strings = ["Japan Company", "japan company", "日本の会社"];
for (var i=0; i<strings.length; i++) {
    var m = strings[i].match(/(?:^|\s)(\S)/g)
    if (m === null) {
        console.log(strings[i], '=> ', strings[i])
    } else {
        console.log(strings[i], '=>', m.join('').replace(/\s+/g, '').toUpperCase())
    }
}

about 4 years ago · Juan Pablo Isaza Denunciar

0

Based on your comments, I think this should do what you want.

function getUppercaseLetters(string) {
    // Find uppercase letters in the string
    let matches = string.match(/[A-Z]/g);
    // If there are no uppercase letters, get the first letter of each word
    if (!matches) matches = string.split(" ").map(word => word[0]);
    // If there are still no matches, return an empty string. This should prevent against any edge cases.
    if (!matches) return "";
    // Join the array elements and make it uppercase.
    return matches.join("").toUpperCase();
}
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