How do I handle every ASCII character (including regex special characters) in a Perl regex? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T08:11:53Z http://stackoverflow.com/feeds/question/754028 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/754028/how-do-i-handle-every-ascii-character-including-regex-special-characters-in-a-p 3 How do I handle every ASCII character (including regex special characters) in a Perl regex? Shhnap 2009-04-15T22:39:22Z 2009-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#754046 6 Answer by Tanktalus for How do I handle every ASCII character (including regex special characters) in a Perl regex? Tanktalus 2009-04-15T22:46:46Z 2009-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#754049 13 Answer by friedo for How do I handle every ASCII character (including regex special characters) in a Perl regex? friedo 2009-04-15T22:47:02Z 2009-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#755422 1 Answer by blixtor for How do I handle every ASCII character (including regex special characters) in a Perl regex? blixtor 2009-04-16T09:50:47Z 2009-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>