I will use this function ```function escapeXML(str...
# suitescript
m
I will use this function
Copy code
function escapeXML(str){
	return str.replace(/&/g, '&')
               .replace(/</g, '<')
               .replace(/>/g, '>')
               .replace(/"/g, '&quot;')
               .replace(/'/g, '&apos;');
}
never mind 🙏