Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
Bits[String] - convert base-10 number to a base-2 number in string form
Calling Sequence
String(number, options)
String(number, lsbfirst, options)
String(number, msbfirst, options)
Parameters
number
-
a nonnegative integer
lsbfirst
literal indicating string should have the least significant bit first
msbfirst
literal indicating string should have the most significant bit first
options
bits option
Description
The String command converts the input number to a base-2 string, by default in least-to-most significant bit order. Specification of the option msbfirst reverses the order in the output string to most-to-least significant bit order.
The most common usage of this command would be for conversion of a number into a string of its base-2 digits.
The Split command is closely related, but the output for that command is a list of integers.
The option bits=n tells String how many bits to consider in the conversion. Any bits in a higher position are simply ignored.
The number of bits can also be set via Settings.
Examples
lsbfirst is the default
msbfirst reverses the order
Truncate at bit 8
See Also
Bits, Split
Download Help Document