Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to read different separators from an xml language file.
This works fine for all characters except for the case when space shall be separator. Note that here is a white space between the <sv> </sv> tags.
<row> | |
<key>SepSetting</key> | |
<comment>1 character separator "translated" according to language</comment> | |
<eng>,</eng> | |
<sv> </sv> |
</row>
When this is loaded in qlikview the field is emptied i.e the space-character is removed, i'm guessing some trimming has occurred.
Is there any way to state the space to make qlikview keep it when loading the xml-file?
I've tried with different ' 'and " " and also with some ascii and hex coding for "Space" as value, without any success.
Thanks!
/Anneh
Add this to your script before the load statement:
set Verbatim = 1;
It will prevent stripping spaces. You may want to reset it afterwards to 0.