Hello,
We have the following string which is generated from our warehouse management system into an XML file. We grab the error tag from the XML file and use it to send an email with the error. The error is a single string that looks like this
We like to present it like this
Basically we like to add a carriage return after every ":"
Is this even possible
Thanks in advance
RJL
We have the following string which is generated from our warehouse management system into an XML file. We grab the error tag from the XML file and use it to send an email with the error. The error is a single string that looks like this
Code:
Invalid receipt (81989373):Invalid receipt detail (40):Invalid item.:Item "12345678" with company "Acme" does not exist.
We like to present it like this
Code:
Invalid receipt (81989373):
Invalid receipt detail (40):
Invalid item.:Item "E0919806" with company "Energizer" does not exist.
Basically we like to add a carriage return after every ":"
Is this even possible
Thanks in advance
RJL