REGEXP_REPLACE() expresión regular POSIX
Syntax: REGEXP_REPLACE(source, pattern, replacement_string, [, flags])
Analicemos la sintaxis anterior:
- string_reemplazo
- banderas
- REGEXP_REPLACE()
first_name last_name
Y desea reorganizar el nombre de la siguiente manera:
last_name, first_name
REGEXP_REPLACE()
SELECT REGEXP_REPLACE('Raju Kumar', '(.*) (.*)', '\2, \1');
Producción:
Ejemplo 2:
ABC12345xyz
SELECT REGEXP_REPLACE('ABC12345xyz', '[[:alpha:]]', '', 'g');
Producción:
Publicación traducida automáticamente
Artículo escrito por RajuKumar19 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA