function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
DSLDSL 

XmlStreamReader unicode bug??

I note in some of Dave Carroll's code share and a couple of blog posts, that there was a bug in XmlStreamReader. See this here from one of his snippets:

 

 

 

// TODO
/* This is to avoid a bug in XmlStreamReader - 
 * it can't handle extended characters
 */
xml = xml.replaceAll('ö', 'o');	
xml = xml.replaceAll('ø', 'o');
xml = xml.replaceAll('“', '"');
xml = xml.replaceAll('”', '"');
xml = xml.replaceAll('&#[^;]*;', '');

 

These lines essentially filter out all unicode characters like foreign languages.

 

 

Does anyone know:

 

1) Does the bug still exist, and what was the bug? Just some characters? Simple tests look like it works fine.

2) Do the new DOM Document and XMLNode class suffer any similar bugs?

 

Thanks!