This code helps me find text between start&end words. But the search ends after the first pair found. How to find all the matches?
JavaScript
x
8
1
const file = fs.readFileSync('./history.txt', 'utf8')
2
const startString = '-----CompilerOutput:-stderr----------'
3
const endString = '-----EndCompilerOutput---------------'
4
const startIndex = file.indexOf(startString) + startString.length
5
const endIndex = file.indexOf(endString)
6
const between = file.slice(startIndex, endIndex)
7
console.log(between)
8
Advertisement
Answer
Use
JavaScript
1
3
1
const startIndex = file.match(/-----CompilerOutput:-stderr----------/gi)
2
const endIndex = file.match(/-----EndCompilerOutput---------------/gi)
3
Reference: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions