If you just need a check, and it doesn't have to be a regex, then maybe index() and ne would work?
if( index($str1, $str2) > -1 && $str1 ne $str2 ){
print "$str2 is a substring of $str1\n";
}
With tests to make sure it works as expected:
#!/usr/bin/env perl
use strict;
use warnings;
use Test::Simple;
my $str1 = "helloworld";
my $str2 = "hello";
my $str3 = "hello";
ok( is_substring($str2, $str1), "str2 is a substring of str1");
ok( !is_substring($str3, $str2), "str3 is not a substring of str2");
sub is_substring {
my ($substring, $string) = @_;
return 1 if index($string, $substring) > -1 && $string ne $substri
+ng;
}
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, 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, 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.
|
|