Replace char in Table

  • Thread starter Thread starter PawelR
  • Start date Start date
P

PawelR

Hello Group,
I've Table in DataSet - result of sql query.
How repleace all chars (ex ASCII 145) to anoder chars (ex ASCII 64)

Thx PawelR
 
PawelR said:
I've Table in DataSet - result of sql query.
How repleace all chars (ex ASCII 145) to anoder chars (ex ASCII 64)

Use String.Replace on each string in the table.
 
I think the best way would be to serialize the DataSet to XML and use
XSLT with the translate() function, then load the DataSet again.
 
Back
Top