Hi to all
i want to remove DOUBLE INVERTED COMMA from HBufC8.
i m using below code to remove ">" sign. But how can i remove DOUBLE INVERTED COMMA.
while(purl->Des().Find(_L8(">"))!=KErrNotFound)
{
purl->Des().Delete(purl->Des().Find(_L8(">")),1);
}
i have used in same way like
while(purl->Des().Find(_L8(""""))!=KErrNotFound)
{
purl->Des().Delete(purl->Des().Find(_L8("""")),1);
}
but going into infinite loop.
any one can help.

Reply With Quote

