I have a perspective project and am simply displaying a string in a label component. The string is coming from a Sparkplug B MQTT message via my MQTT broker, originating from a Canary Data Historian. The string is there but there are block characters between each character. Please help get rid of them!! Thank you in advance!
It looks like a Unicode problem (> 1 byte per character). Show us your text property binding (nicely formatted as code - see Wiki - how to post code on this forum).
Try adding an expression transform to your binding: urlEncode({value})
This will show the HTTP encoding for any odd characters. (The space character, for example, is encoded as %20.)
Paste the results in here.
It seems your string has null bytes preceding each character... you should really try to fix this at the source, but you might be able to use the replace expression function to replace the null's with "" (empty string).
That's what I expected you would find and Kevin's solution was going to be my next suggestion.
Try replacing the urlEncode transform with the expression, replace({value}, char(0), "")
(Since I haven't been able to create the problem this solution is untested.)