03-10-2009, 06:21 PM
supose u have a string say String1 = "height=""11" and u want String1 as "height="11" .If thi is the case then use the below code
Code:
String1 = "height=""11"
str = replace(String1,chr(34)&chr(34),chr(34))