I, too, am confused by the whole question of the 'complimentary' (or complementary, or converse) question. Maybe the question can be usefully (and symmetrically) reframed as "Are there any characters in common at the beginnings of both strings?". This could be answered by index as well as by a regex.

>perl -wMstrict -le "my @set = ('abc.def.ghi', 'abc', '...'); ;; for my $p (@set) { for my $q (@set) { print qq{'$p', '$q' common at start? }, $q =~ m{ \A \Q$p\E }xms || $p =~ m{ \A \Q$q\E }xms ? 'yes' : 'no'; } } ;; print ''; for my $p (@set) { for my $q (@set) { print qq{'$p', '$q' common at start? }, 0 == index($p, $q) || 0 == index($q, $p) ? 'yes' : 'no'; } } " 'abc.def.ghi', 'abc.def.ghi' common at start? yes 'abc.def.ghi', 'abc' common at start? yes 'abc.def.ghi', '...' common at start? no 'abc', 'abc.def.ghi' common at start? yes 'abc', 'abc' common at start? yes 'abc', '...' common at start? no '...', 'abc.def.ghi' common at start? no '...', 'abc' common at start? no '...', '...' common at start? yes 'abc.def.ghi', 'abc.def.ghi' common at start? yes 'abc.def.ghi', 'abc' common at start? yes 'abc.def.ghi', '...' common at start? no 'abc', 'abc.def.ghi' common at start? yes 'abc', 'abc' common at start? yes 'abc', '...' common at start? no '...', 'abc.def.ghi' common at start? no '...', 'abc' common at start? no '...', '...' common at start? yes

In reply to Re: regex search by AnomalousMonk
in thread regex search by zuma53

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.