Regular expressions are the vice-grips in the Perl programmer's toolbox. They're important tools. They're useful for just about everything. And overusing them can get you into sticky situations.
Here's code to transform 'artist_name-title_with_other(chars)' into 'Artist Name - Title With Other Chars'.
my $song = q{xecutioners-you_cant_scratch_(skit)};
# Split up artist and title of song
my ($artist, $title) = split(/-/, $song, 2);
# Turn the artist and title into human text, then stick
# them back together with ' - '.
my $new_song = humanize_text($artist) . ' - ' . humanize_text($title);
print $new_song, "\n";
# Runs a piping operation. From back to front, here's what
# happens:
# 1. We split 'something_like(this)' into 'something',
# 'like', 'this'
# 2. We capitalize the first letter of every word
# 3. We stick the list back together delimited with spaces
sub humanize_text {
return join(' ', map(ucfirst($_), split(/[^a-zA-Z]+/, $_[0])) );
}
stephen
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|