Junk Characters

Hi Team,

I am reading a numeric value (say pound symbol with a number) and that value is printed into a html and then to a word file.

In both html and in word document i am getting a junk value before the pound symbol. How to overcome from this?

@Robotics Can you show us that Junk Symbol ?

This is the junk symbol i am getting - image

@Robotics Do you get Junk Characters like this when you extract Some other values that you want to?

Hi,

It might be caused by nbsp.
The following post might help you.

If so, you need the following expression to remove it.

strData = strData.Replace(ChrW(160)," ")

Regards,