I did a small offering to my co-workers on regular expressions. The approach I decided to take:

Emphasize the gentle learning curve of regular expressions. (Whut.) In other words, if you know them a little, you can use them a little. Let the anchors be their anchor: ^ and $, then build from there. The next logical steps are: .+ and .* homegrown character classes built-in character classes (\w and the like)

I moved quickly to using backreferences to replace strings, since we often have to generate scripts from lists that the users send us.

Try to find things they are actually doing and show how regexps can replace "elaborate string manipulation using only built-in string functions." Remind them that less code means fewer bugs. Enlist the help of someone who works on another team and see what they do that can be made easier with regular expressions. (If that team is a large team, so much the better.) If your audience sees that you've taken the trouble to tailor your presentation to their everyday needs, they will respond.

I'd also keep it short. The goal won't be to teach them the ins and outs of regexps, just to let them see how they can be of value


In reply to re: regexp class by Anonymous Monk

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.