Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

258
Views
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 answers
Answer question

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!