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

418
Vistas
php regex: how to match number + letters + Chinese

I am trying to handle the string which got letters, numbers, Chinese and some punctuations and left number, letters and Chinese only like below

raw string

a>b%%c##1@23测$$试??\\:.##,,??!!

result

abc123测试

for Chinese, preg_replace('/\P{Han}+/u', '', $text) works perfectly

测试 // result

and for number and letters, preg_replace('/[^0-9a-zA-Z]/', '', $text) works too.

abc123 // result

But how can I combine them?

why preg_replace('/[\P{Han}]|[0-9a-zA-Z]/u', '', $raw); doesn't work as expected?

Thanks a lot for anyone help!

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

0

You need

preg_replace('~[^0-9a-zA-Z\p{Han}]+~u', '', $raw)

See the regex demo.

The [^0-9a-zA-Z\p{Han}]+ is a negated character class that matches any one or more chars other than ASCII digits, ASCII letters and any Chinese chars.

It is important to use the u flag with this pattern, as your input is Unicode strings.

See the PHP demo:

$raw = 'a>b%%c##1@23测$$试??\\:.##,,??!!';
echo preg_replace('~[^0-9a-zA-Z\p{Han}]+~u', '', $raw);
// => abc123测试
over 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