Jump to content
  • 0

REGEX для слов КАПСОМ


d0ublezer0
 Share

Question

Привет!

помогите составить регулярку на PHP?

я только начал изучать эту тему, а мозг уже сломался

У меня задача - достать все слова из строки, которые набраны ЗАГЛАВНЫМИ и ограничены пробелами или концом строки, и преобразовать их в строчные с первым заглавным символом.

Например, исходная строка: "CARMEDIA VolksWagen POLO JLL-12RD HOME" (жирным выделены нужные)

\b[А-ЯA-Z]+\b

Вероятно что-то такое должно быть, но выделяется в том числе и JLL

 

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Сделал так (насколько знаний хватило) но, думается мне, это можно было сильно упростить:

 $input_line="CARMEDIA   VolksWagen  POLO JLL-12RD HOME немного СЛОВ на русском языке END";
$input_line = preg_replace('/\s+/', ' ', $input_line);
$words=split(" ", $input_line);
foreach ($words as $word){
    if (preg_match('/^[А-ЯЁA-Z\W]+$/u', $word)){
        $caps[]=$word;
        $capitol[]=mb_convert_case($word,MB_CASE_TITLE,'UTF-8');
    }
}
$output_line=str_replace($caps,$capitol,$input_line);
echo $output_line; 

Результат:

Carmedia VolksWagen Polo JLL-12RD Home немного Слов на русском языке End

 

Link to comment
Share on other sites

  • 0
$str = "CARMEDIA   VolksWagen  POLO  JLL-12RD HOME            немного СЛОВ на русском языке END";

echo trim(preg_replace_callback(
	'#(?:^|\s)[A-Z]+(?:\s|$)#'
	, function($m){return ' '.ucfirst(strtolower(trim($m[0]))).' ';}
	, preg_replace('/\s+/',' ', $str)
));

 

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • 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. See more about our Guidelines and Privacy Policy