Files
pkgscripts-ng/strings.js
2024-06-06 11:13:39 +08:00

10 lines
301 B
JavaScript

const { readFileSync } = require('fs');
exports.getString = function(file, section, key) {
const content = readFileSync(file, 'utf8');
const regex = new RegExp(`^\\[${section}\\][^]*?${key}[^=]*=\\s*"(.*)"`, 'm');
const match = content.match(regex);
return match ? match[1] : '';
};