www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - decimal to binary

reply "snow" <marcel.patzwahl gmail.com> writes:
Hello,
I searched a lot in the docs and search, but couldn't find 
anything so far. Is there a funtion, which converts my decimal 
number into a binary?
Jun 10 2013
next sibling parent "Infiltrator" <Infiltrator d.irc> writes:
On Monday, 10 June 2013 at 09:46:42 UTC, snow wrote:
 Hello,
 I searched a lot in the docs and search, but couldn't find 
 anything so far. Is there a funtion, which converts my decimal 
 number into a binary?
string "%b". Or if you're printing, you can go straight with
Jun 10 2013
prev sibling parent "John Colvin" <john.loughran.colvin gmail.com> writes:
On Monday, 10 June 2013 at 09:46:42 UTC, snow wrote:
 Hello,
 I searched a lot in the docs and search, but couldn't find 
 anything so far. Is there a funtion, which converts my decimal 
 number into a binary?
I presume your decimal is in a string? use std.conv.parse or std.conv.to
Jun 10 2013