Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

The Perl string with the file path was originally read from a UTF-8 text file and is internally flagged as UTF-8.

So you say you have decoded text (aka a string of Unicode Code Points) which is stored using the UTF=8 internal storage format?

However, the string I get back is always flagged as "native/raw bytes".

Perl is free to pick whatever internal storage format it wants.

That said, I can't reproduce your claim. substr returns a string using the UTF8=1 format if that's the storage format used by the input string.

$ perl -e' use Devel::Peek qw( Dump ); my $s = "a\N{U+2660}"; Dump($s); my $ss = substr($s, 0, 1); Dump($ss); ' SV = PV(0x7fffd3496ca0) at 0x7fffd34c5a88 REFCNT = 1 FLAGS = (POK,IsCOW,pPOK,UTF8) PV = 0x7fffd34c33a0 "a\342\231\240"\0 [UTF8 "a\x{2660}"] CUR = 4 LEN = 10 COW_REFCNT = 1 SV = PV(0x7fffd3496d30) at 0x7fffd34c5ad0 REFCNT = 1 FLAGS = (POK,pPOK,UTF8) PV = 0x7fffd34ad050 "a"\0 [UTF8 "a"] CUR = 1 LEN = 10

In reply to Re: substr on UTF-8 strings by ikegami
in thread substr on UTF-8 strings by rdiez

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 musing on the Monastery: (3)
As of 2024-04-26 05:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found