Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
First there is nothing like a "hexadecimal division" in Perl.

Numbers are represented internally as integers or floats in binary format.

You are only free to use different base systems for the notation, see perlnumber .

But the division is always the same!

> the division or 0x05 by 0x10 that failed as the result was 0x30 not 0x00

really?

DB<17> p 0x05/0x10 0.3125 DB<18> p int(0x05/0x10) 0

But "\x10" is not a number it's a one-character string with the ASCII code 16 (= 0x10)

DB<25> p int(0x05/"\x10") Illegal division by zero at (eval 33)[C:/Perl_64/lib/perl5db.pl:646] l +ine 2.

"\x{Hex}" is just a way to use chr inside interpolated strings!

(See "escape sequences" in perlop#Quote-and-Quote-like-Operators for details.)

Stop using ASCII codes in strings for hex-numbers!

Perl is not C, it will ONLY try to treat a string which looks like a decimal number as it's look-a-like number, all others as number zero in numerical context.

DB<31> p "05"/"16" # strings with decimal(!) numbers 0.3125

Again Perl is not C and will NOT try to take the byte-code of a character as a number, (unless you use ord explicitly ) !

"\x10" doesn't look like a decimal number, it doesn't even look like any number at all!

It's just one character which has position 16 (=0x10) in the ASCII table.

DB<27> p ord("\x10") 16 DB<28> p "\x10" &#9658; # not a number, hence 0

(NB: &#9658; shows as ► on my display this is not a number, not even a character.

It's the Data_Link_Escape character in original ASCII, some OS try to overload it with something more meaningful.)

This can only succeed (somehow) if you use the ASCII-code of a number character.

Only the 10 characters "0".."9" look like a digit in ASCII.

DB<1> p ord("1") 49 DB<2> p ord("\x31") 49 DB<3> p 0 + "\x31" # string = "1" looks like number 1 DB<4> p 5 / "\x31\x36" # string = "16" looks like number 0.3125

I hope it's clearer now, since we already had this discussion in one of your last questions!

--> vexed by the hex!

Cheers Rolf
(addicted to the Perl Programming Language and ☆☆☆☆ :)
Wikisyntax for the Monastery


In reply to Re^3: hexadecimal division (string to number casting only for decimal! numbers! ) by LanX
in thread hexadecimal division by holandes777

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (1)
As of 2024-04-19 00:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found