Hello,
Does have any way to encode/decode a XML string? I search in Sublime Text 2 itself and plugin, but have not find it.
For example:
<?xml version="1.0" encoding="UTF-8"?>
<IntMsg><CommandID>CMD06201_VDESIMYO</CommandID><ExtTransID>0adc30787e6f49c8817511df2dae89dd</ExtTransID><ProcessTime>20120403183730</ProcessTime><DealerCode></DealerCode><OutOperID>BLAU ISP|esbblau</OutOperID><OutPwd></OutPwd><LoginType></LoginType><PUBLoginID></PUBLoginID><ContactID></ContactID><BrandID>100004900</BrandID><SubBrandID>220</SubBrandID><BrandPwd></BrandPwd><TestFlag>0</TestFlag><Response><RspCode>831331</RspCode><RspDesc>Rateplan is not exist.</RspDesc></Response><SvcCont></SvcCont></IntMsg>
After XML decode, it is:
<?xml version="1.0" encoding="UTF-8"?>
<IntMsg><CommandID>CMD06201_VDESIMYO</CommandID><ExtTransID>0adc30787e6f49c8817511df2dae89dd</ExtTransID><ProcessTime>20120403183730</ProcessTime><DealerCode></DealerCode><OutOperID>BLAU ISP|esbblau</OutOperID><OutPwd></OutPwd><LoginType></LoginType><PUBLoginID></PUBLoginID><ContactID></ContactID><BrandID>100004900</BrandID><SubBrandID>220</SubBrandID><BrandPwd></BrandPwd><TestFlag>0</TestFlag><Response><RspCode>831331</RspCode><RspDesc>Rateplan is not exist.</RspDesc></Response><SvcCont></SvcCont></IntMsg>
Thank you very much!