From: Naveenarjuna on
I want to convert a string into hexa decimal value...suppose i have a string 'A1C2'
so if i convert that string into hexa decimal value result should be 41410...
Please give me suggestions
From: us on
"Naveenarjuna " <naveen.arjun(a)gmail.com> wrote in message <hoo59e$qfs$1(a)fred.mathworks.com>...
> I want to convert a string into hexa decimal value...suppose i have a string 'A1C2'
> so if i convert that string into hexa decimal value result should be 41410...
> Please give me suggestions

a hint:

help hex2dec;

us