how to convert text into binary

how to convert text into binary

4 Comments

Like a binary image? Or like using dec2bin('abc')? As you know everything in digital computers is ultimately already binary , so since your text is already in binary we need to know what you really mean.
Or perhaps convert 'text' to 'binary':
function out = text2binary(txt)
out = regexprep(txt,'text','binary');
end
Omar Ibrahim comments
i need bin2dec convert
Omar:
dec2bin('abc') - '0'

Sign in to comment.

Answers (1)

Nikesh Bajaj
Nikesh Bajaj on 3 Jan 2016
Use file text2bin which convert text to binary, there is file to convert binary to text back.

Categories

Asked:

on 21 Sep 2014

Answered:

on 3 Jan 2016

Community Treasure Hunt

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

Start Hunting!