Hi t-rex,

A single example input is not a good basis for making a regular expression, you'll need to show several examples of strings that should match and several that shouldn't, and also describe what specific information in the string you're interested in. For example, the regexes /TPSM/ and /rulefilecycl/ both match the string you provided, but I have no idea if those will also match lines you don't want to have matched.

Also, PerlMonks is more of a place to learn, so I recommend you have a look at perlretut and try writing a regex, and feel free to ask for help here if you run into trouble (How do I post a question effectively?). The following website is also very helpful in designing a regex, here's a link to get you started: https://regex101.com/r/oX5sC6 (note that not all of Perl's features are supported, but for simple regexes like in this case it's compatible).

Hope this helps,
-- Hauke D


In reply to Re^3: Searching a string in running file by haukex
in thread Searching a string in running file by t-rex

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.