Jump to content

is there a built-in php function?


featherwebdiva

Recommended Posts

Hi I'm new.

 

These are some of the example strings I'm dealing with

 

"update online SJ"

"Change account GBBCDL"

"CRM L"

 

I was wondering if there is a built-in function or function(s) that could help me strip all the CAPS from the right of each string til it finds the first space.  I'm not worried about those and would look much nicer to just display everything without that.

 

Thanks from Jennifer

 

 

Link to comment
https://forums.phpfreaks.com/topic/231144-is-there-a-built-in-php-function/
Share on other sites

I doubt there is such a function, but you can use:

 

function strtolower_first_word($str) {
    $words = str_word_count($str, 1);
    if(empty($words)) return $str;
    $words[0] = strtolower($words[0]);
    return implode(' ', $words);
}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.