in reply to how to split a string and take certain position?
print( (split(/:/, $sentence))[1] ); # negative indexes work too
or the less cluttered: print +(split /:/, $sentence)[1];
for the latter question, consider: ($match) = $sentence =~ /([^:]+)$/
|
|---|