iphone - Issue in decoding xml response, received from Web Service calling -
i facing issue in decoding xml response, received webservice calling.
see below example, how using response decode in original string.
nsstring *strinput =@"chief shaêdegaâ¢ihwaâ¢â´deê"; nsstring *stroutput =@"";//expected -- > chief shaʔdega•ihwa•´deʔ stroutput = [strinput stringbydecodinghtmlentities]; nslog(@"%@",stroutput); /////////////////////////////////////////// //actual output get- > chief shaÊdega&aci rc;¢ihwaâ¢Â´deÊ //expected out put should following/////// //output - > chief shaʔdega•ihwa•´deʔ
i using mwfeedparser decode https://stackoverflow.com/a/8148649/1000906 reference
plz help, thanks.
Comments
Post a Comment