I'm prepared to be embarrassed (as much as one can be), but note, that in my code I often want to search for the first character that is NOT something -- like what is the index of the first non-space character?
To find the first incidence of a character, we can use
my $start = 1+index $_,q(");
die "No quoted string found" unless $start;
$_ = substr $_,$start;
my $stop = index, $_, q(");
$_ = substr $_,0,$stop;
I was noticing in a section of code, a place where I get rid of leading space and have been forced into
s/^\s*//;
which tends to be notably slower than equivalent index/substr code.
So I was wondering how to find the first character that is *not* a character, like:
my $start = 1+nindex $_," ";
Though certainly at least a set would be useful, like:
my $start = 1+nindex $_,"[\t ]";
as long as it didn't invoke the regex engine.
Has anyone else run into a need for this type of paradigm: finding the first byte
that is NOT the listed byte (or one of the listed bytes)?
Is there a need for a 2nd set of instructions to skip bytes until 'not equal', vs. index's skip bytes until 'equal'?
Thanks!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.