R
Robert
I am struggling with the following (simple) problem.
Given a list of vehicles I need to capitalise the first letter of the
make and model and change the spec to uppercase.
eg.
ford mondeo 2.0 glx
Ford Mondeo 2.0 GLX
The closest I can get is this but it capitalises every word.
$model =~ s/(\w+)/\u\L$1/g;
Any pointers would be appreciated.
Given a list of vehicles I need to capitalise the first letter of the
make and model and change the spec to uppercase.
eg.
ford mondeo 2.0 glx
Ford Mondeo 2.0 GLX
The closest I can get is this but it capitalises every word.
$model =~ s/(\w+)/\u\L$1/g;
Any pointers would be appreciated.