how do I filter out chr(13) from a dataset

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hello,

I am returning a dataset from a webservice that has two columns. Column
two could have some return characters in it. Have can I filter them our
prior to displaying in a datagrid? Thanks in advance.

John
 
Hello,

John said:
I am returning a dataset from a webservice that has two
columns. Column two could have some return characters
in it. Have can I filter them our prior to displaying in a
datagrid? Thanks in advance.

You can replace a character by using the 'Strings.Replace' method or the
method 'Replace' of the 'String' class.
 
Back
Top