Facebook
From Crimson Horse, 5 Years ago, written in JavaScript.
This paste is a reply to Untitled from ik - go back
Embed
Viewing differences between Untitled and Re: Untitled
const fs = require('fs');
const file = fs.readFileSync('cms_module_news.xml');
const text = file.toString();

const out = text.replace(/([^<]*)<\/column>/mg, (match, p1, p2) => {
    return '<' + p1 + '>' + p2 + '';
});

fs.writeFileSync('cms_module_news_replaced.xml', out);