show/hide this revision's text 4 Improve formatting and make title more specific

How do I handle every ASCII character (including regex special characters) in perl a Perl regex?

Hi all,

I have the following code in Perl:

if (index ($retval, $_[2]) != -1) {
    @fs = split ($_[2], $_[1]);

$_[2] is the delimiter variable and $_[1] is the string that the delimiter may exist in. ($_[0] $_[0] is used elsewhere) You may have guessed that this code is in a subroutine by those variable names.

Anyway, onto my question, when my delimiter is something innocuous like 'a' or ':' the code works like it should. However, when it is something that would get parsed by Perl regex, like a '\' character, then it does not work like it is supposed to. This makes sense because in the split function perl Perl would see something like:

split (/\/, $_[1]);

which makes no sense to it at all because it would want this:

split (/\//, $_[1]);

So with all of that in mind my question, that I cannot answer, is this: "How do I make it so that any delimiter that I put into $_[2], _[2], or all the ASCII characters, gets treated as the character it is supposed to be and not interpreted as something else?"

Thanks in advance,

Robert

show/hide this revision's text 3 formatting

Hi all,

I have the following code in Perl:

if (index ($retval, $_[2]) != -1) {
    @fs = split ($_[2], $_[1]);

$_[2] is the delimiter variable and $_[1] is the string that the delimiter may exist in. ($_[0]$_[0] is used elsewhere) You may have guessed that this code is in a subroutine by those variable names.

Anyway, onto my question, when my delimiter is something innocuous like 'a'a' or ':':' the code works like it should. However, when it is something that would get parsed by Perl regex, like a '\'\' character, then it does not work like it is supposed to. This makes sense because in the split function perl would see something like:

split (/\/, $_[1]);

which makes no sense to it at all because it would want this:

split (/\//, $_[1]);

So with all of that in mind my question, that I cannot answer, is this: "How do I make it so that any delimiter that I put into $_[2], _[2], or all the ASCII characters, gets treated as the character it is supposed to be and not interpreted as something else?"

Thanks in advance,

Robert

show/hide this revision's text 2 formatting

Hi all,

I have the following code in Perl:

if (index ($retval, $_[2]) != -1) {
    @fs = split ($_[2], $_[1]);

$[2] _[2] is the delimiter variable and $[1] _[1] is the string that the delimiter may exist in. ($_[0] $_[0] is used elsewhere) You may have guessed that this code is in a subroutine by those variable names.

Anyway, onto my question, when my delimiter is something innocuous like 'a' a' or ':' :' the code works like it should. However, when it is something that would get parsed by Perl regex, like a '\' \' character, then it does not work like it is supposed to. This makes sense because in the split function perl would see something like:

split (/\/, $_[1]);

which makes no sense to it at all because it would want this:

split (/\//, $_[1]);

So with all of that in mind my question, that I cannot answer, is this: "How do I make it so that any delimiter that I put into $_[2], _[2], or all the ASCII characters, gets treated as the character it is supposed to be and not interpreted as something else?"

Thanks in advance,

Robert

show/hide this revision's text 1