Files
Orchestrator/privat/CV/andreknie.de/test-cleanup.js
T
ankn b46de6dc7d
Deploy CV Site (andreknie.de) / deploy (push) Canceled after 0s
ci: migrate GitHub actions to Gitea actions
2026-07-22 15:42:06 +02:00

12 lines
364 B
JavaScript

const text = `KI Quiz Teil 2 - jetzt wird's schwerer "
"
"Letzte Woche haben wir die 5 Einstiegsfragen gesehen:
"Viel Vergnügen!`;
// Strip trailing quotes
let cleaned = text.replace(/ "\n/g, '\n');
// Strip quotes on their own line
cleaned = cleaned.replace(/\n"\n/g, '\n');
// Strip leading quotes
cleaned = cleaned.replace(/\n"/g, '\n');
console.log(cleaned);