How do I handle every ASCII character (including regex special characters) in a Perl regex? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T08:11:53Zhttp://stackoverflow.com/feeds/question/754028http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/754028/how-do-i-handle-every-ascii-character-including-regex-special-characters-in-a-p3How do I handle every ASCII character (including regex special characters) in a Perl regex?Shhnap2009-04-15T22:39:22Z2009-04-16T16:04:25Z
<p>I have the following code in Perl:</p>
<pre><code>if (index ($retval, $_[2]) != -1) {
@fs = split ($_[2], $_[1]);
</code></pre>
<p><code>$_[2]</code> is the delimiter variable and <code>$_[1]</code> is the string that the delimiter may exist in. (<code>$_[0]</code> is used elsewhere) You may have guessed that this code is in a subroutine by those variable names.</p>
<p>Anyway, onto my question, when my delimiter is something innocuous like <code>'a'</code> or <code>':'</code> the code works like it should. However, when it is something that would get parsed by Perl regex, like a <code>'\'</code> character, then it does not work like it is supposed to. This makes sense because in the split function Perl would see something like:</p>
<pre><code>split (/\/, $_[1]);
</code></pre>
<p>which makes no sense to it at all because it would want this:</p>
<pre><code>split (/\//, $_[1]);
</code></pre>
<p>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 <code>$_[2]</code>, or all the ASCII characters, gets treated as the character it is supposed to be and not interpreted as something else?"</p>
<p>Thanks in advance,</p>
<p>Robert</p>
http://stackoverflow.com/questions/754028/how-do-i-handle-every-ascii-character-including-regex-special-characters-in-a-p/754046#7540466Answer by Tanktalus for How do I handle every ASCII character (including regex special characters) in a Perl regex?Tanktalus2009-04-15T22:46:46Z2009-04-15T22:52:46Z<pre><code>split /\Q$_[2]/, $_[1]
</code></pre>
http://stackoverflow.com/questions/754028/how-do-i-handle-every-ascii-character-including-regex-special-characters-in-a-p/754049#75404913Answer by friedo for How do I handle every ASCII character (including regex special characters) in a Perl regex?friedo2009-04-15T22:47:02Z2009-04-15T22:47:02Z<p>You can use <a href="http://perldoc.perl.org/functions/quotemeta.html" rel="nofollow">quotemeta</a> to escape <code>$_[2]</code> properly so it will work in the regex without getting mangled. This should do it:</p>
<pre><code>my $quoted = quotemeta $_[2];
@fs = split( $quoted, $_[1] );
</code></pre>
<p>Alternatively, you can use \Q in your regex to escape it. See "Escape Sequences" in <a href="http://perldoc.perl.org//perlre.html" rel="nofollow">perlre</a>.</p>
http://stackoverflow.com/questions/754028/how-do-i-handle-every-ascii-character-including-regex-special-characters-in-a-p/755422#7554221Answer by blixtor for How do I handle every ASCII character (including regex special characters) in a Perl regex?blixtor2009-04-16T09:50:47Z2009-04-16T16:04:25Z<p>As a side note, I'm suspecting that the <code>$_[1]</code> and <code>$_[2]</code> variables refer to the automatically passed in <code>@_</code> array of a sub.</p>
<p>It's helpful - would have saved you quite some explaining here and made your code more understandable by itself - and common practice to use something like the following at the beginning of the sub:</p>
<pre><code>sub mysub {
my ($param1, $string, $delim) = @_;
# ...
}
</code></pre>