Im trying to use javascript to convert ultimate guitar.com formatting to worshiptools/chordpro as im going to use the javascript code in gdevelop5 to make a webapp for my church to utilise
I tried writing it many ways but its not exactly putting the text inline but my code outputs only
[G] [D] [Em]
Amazing grace, how sweet the sound
[G] [D] [C]
That saved a wretch like me
i Tried This
function convertUltimateGuitarToWorshipTools(ultimateGuitarText) {
// Split input text into lines (songs may have multiple lines of chords/lyrics)
const lines = ultimateGuitarText.split('n');
const worshipToolsText = lines.map(line => {
// This pattern finds the chords, which are typically words in uppercase or lowercase
const chordPattern = /b([A-G][#b]?(m|maj|min|sus|dim|aug)?)b/g;
// Replace each found chord with the WorshipTools format (i.e., [chord] )
return line.replace(chordPattern, (match, chord) => {
return `[${chord}]`;
});
}).join('n'); // Join the lines back into a single string
return worshipToolsText;
}
// Example Ultimate Guitar input (with chords above the lyrics)
const ultimateGuitarText = `
G D Em
Amazing grace, how sweet the sound
G D C
That saved a wretch like me
`;
// Convert the Ultimate Guitar text to WorshipTools format
const worshipToolsText = convertUltimateGuitarToWorshipTools(ultimateGuitarText);
// Output the converted text
console.log(worshipToolsText);
but i need this to be the output
[G]Amazing grac[D]e, how swee[Em]t the sound
[G]That saved [D]a wretch lik[C]e me