Clear Filters
Clear Filters

How to convert a string to a 8 bit Ascii one row binary vector?

10 views (last 30 days)
Hello everyone. I have for example the string:"abcd" i want to convert it to "01100001011000100110001101100100" (see the apendded zeros). as a logical vector.
thanks!

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 17 Aug 2016
Edited: Azzi Abdelmalek on 17 Aug 2016
s='abcd'
p=dec2bin(double('abcd'),8)'
out=p(:)'
  2 Comments
Jack Day
Jack Day on 17 Aug 2016
thank you Azzi. But unfortunately, dec2bin doesnt convert well the full ascii table. 'abcd' is converted well, but ╞ , ╨ etc. does not.
i need a convertion of 8 bit ascii of all the characters. thanks
Stephen23
Stephen23 on 17 Aug 2016
Edited: Stephen23 on 17 Aug 2016
@Jack Day: ╞ , ╨ are not in the ASCII character set. ASCII only uses seven bits.
Those characters are in the Unicode "Box Drawing" set, which starts at 0X2500 (9472 decimal). There is no way that these can fit into seven (or even eight) bits!
To convert into a logical vector with eight bits per character, as the question requires:
reshape(dec2bin(+'abcd',8)',1,[])=='1'

Sign in to comment.

More Answers (0)

Categories

Find more on Data Type Conversion in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!