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

287
Vistas
Split text with regex in nodejs

I try to find sql script in a file to split in nodejs. Before split to text I add like -split- seperator with regex replace to begining of the sql script as the below:

SQL file:

/* this is a comment for create table */
--this is another comment for create table

create table test1 (comment varchar);
create temporary table test2 (comment varchar);

insert into text1 values('this is a comment for create table ')

Regex replace operation:

sqlText
.replace(/\s+create(\s+|global\s+|temporary\s+)table\s+/gi, `-split- CREATE $1 TABLE `)

Expected output:

/* this is a comment for create table */
--this is another comment for create table

-split- CREATE TABLE test1 (comment varchar);
-split- CREATE temporary TABLE test2 (comment varchar);

insert into text1 values('this is a comment for create table ')

But i get:

/* this is a comment for -split- CREATE TABLE */
--this is another comment for -split- CREATE TABLE

-split- CREATE TABLE test1 (comment varchar);
-split- CREATE temporary TABLE test2 (comment varchar);

insert into text1 values('this is a comment for -split- CREATE TABLE ')

How can I exclude the query sentences in the comment line and quotes?

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

0

  1. First split the text into lines .split(/\n/)
  2. Loop with map each line check if it line begins with create table, if so change it as you want -split- CREATE TABLE

let sqlText = `/* this is a comment for create table */
--this is another comment for create table

create table test1 (comment varchar);
create table test2 (comment varchar);

insert into text1 values('this is a comment for create table ')
`;
console.log(sqlText.split(/\n/).map(line=>line.replace(/^create\s+table\s+/gi, `-split- CREATE TABLE `)).join('\n'))

Notice: the ^ means "starts with".

UPDATE

more simple with RegExp flag m

console.log(sqlText.replace(/^create\s+table\s+/gmi, `-split- CREATE TABLE `))
                                                ☝️
about 4 years ago · Santiago Trujillo Denunciar

0

Use

const str = `/* this is a comment for create table */
--this is another comment for create table

create table test1 (comment varchar);
create table test2 (comment varchar);

insert into text1 values('this is a comment for create table ')`
console.log(str.replace(/(\/\*[^]*?\*\/|^\s*--.*|'[^\\']*(?:\\[^][^\\']*)*'|"[^\\"]*(?:\\[^][^\\"]*)*")|[^\S\n\r]*create\s+table\s+/gmi, (_, x) => x || `-split- CREATE TABLE `))

We skip multiline comments (\/\*[^]*?\*\/), single line comments (^\s*--.*), single quote literals ('[^\\']*(?:\\[^][^\\']*)*') and double quote literals.

The [^\S\n\r]*create\s+table\s+ regex part finds matches outside of afore-mentioned patterns.

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