Whether Perl or not, sometimes the problem with a regular expression is its greediness. Let's say I want to capture the first name of someone and the string looked like this:
Bob Baker
I could use this regular expression:
sed 's/^\(.*)\ .*$/\1/'
That would work with Bob Baker, but not with Bob Barry Baker. The problem is that my regular expression is greedy and will select all of the characters up to the last space, so I would end up not with Bob but with Bob Baker. A common way to solve this is to specify all the characters except for the one you don't want:
sed 's/^\([^ ]*)\ .*$/\1/'
In this case, I am specifying any set of characters not including a space. This will change both Bob Baker and Bob Rudolph Baker to just Bob.
Perl has another way of specifying an non-greedy regular expression. In Perl, you add a ? to your sub-expression you want to be not greedy. In the above example, both of these will change a string containing Bob Barry Baker to just Bob:
$string =~ s/^([^ ]+) .*$/$1/;
$string =~ s/^(.+?) .*$/$1/;
By the way, these are not equivalent!
With the everything but a space regex, I could do this:
$string =~ /^([^ ]+)( )(\[\d{4}\])( )(\(\d+p\))(\.)([^.]+)/
With the non-greedy qualifier:
$string =~ /^(.+?)( )(\[\d{4}\])( )(\(\d+p\))(\.)(.*)/
And, using the x qualifier which allows you to put the same regular expression over multiple lines which is nice because you can add comments to help explain what you're doing:
$string =~ /
^(.+?) #Any set of characters (non-greedy)
([ ]) #Space
(\[\d{4}\]) #[1959]
([ ]) #Space
(\([0-9]+p\)) #(430p)
[.] #Period
([^\.]+) #File Suffix (no period)
/x
And, at this point, you might as well follow Damian Conway's Best Practice recommendations on Perl regular expressions.
$string =~ /
\A #Start of Regular Expression Anchor
( .+? ) #Any set of characters (non-greedy)
( [ ] ) #Space
( \[ \d{4} \] ) #[1959]
( [ ] ) #Space
( \( [0-9] +p \) ) #(430p)
( [.] ) #Period
( [^\.]+ ) #File Suffix (no period)
\Z #End of string anchor
/xm;
Since x ignores all white space, I can even add spaces between subgroups on the same line. In this case, ( .*+? ) is just a bit cleaner than (.*+?). Whether ( \( [0-9] +p \) ) or ( \( [0-9]+p \) ) or even ( \([0-9]+p\) ) is easier to understand is up to you.
And, yes the answer looks very much like Sinan's answer.
By the way, as Sinan showed, using the non-greedy regular expression qualifier is able to parse a b c d e [1234] (1080p).mov while using the everything that doesn't include a space sub-expression wouldn't. That's why I said they're not the same.