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

259
Vistas
Reading a .md file applying some regex, giving null in JavaScript/TS

I have changelog.MD file I am reading it through, fs in JavaScript like,

const readFile = async (fileName: string) => {
  return promisify(fs.readFile)(filePath, 'utf8');
}

now reading my .md file:

const readMD = async (filePath: string) => {
  const text = await readFile(filePath);
}

content in changelog.md is:

## asdfasdf
 * 11asdf asdf
 * 11asdfadf
 
## asdfadf
 * asdfasf
 * asdfasdf

function to read it and applying regex like:

const changeLog = await readME(changeLogPath);
const result = changelog.match(/^##.*\n([^#]*)/m);
console.log(final[1]);

btw- this regex is working fine and returns me the first bullets under first ##. ie. output.

 * 11asdf asdf
 * 11asdfadf

but it returns null, when I apply it on the result after reading changelog.MD file. Any help.

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

0

I am not an expert on TypeScript but when I tried the same with pure JS it worked.

const fs = require("fs");

const readMD = (filePath) => {
    return new Promise((resolve, reject) => {
        fs.readFile(filePath, "utf8", (error, content) => {
            if (error) reject(error);
            resolve(content);
        });
    });
}

readMD("./changelog.md").then(changelog => {
    const result = changelog.match(/^##.*\n([^#]*)/m);
    console.log(result[1]);
});
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