我需要将字符串转换为驼峰大小写,使用以下方法很简单:
mb_convert_case($str, MB_CASE_TITLE, "UTF-8")
但是,如果字符串包含非字母数字字符,那该怎么办:
$str = 'he said "hello world"';
echo mb_convert_case($str, MB_CASE_TITLE, "UTF-8");
结果是:
He Said "hello World"
但我需要:
He Said "Hello World"
我们如何处理这个?
感谢
答案 0 :(得分:2)
使用正则表达式。
如果您只使用非重音拉丁字符,则可以像
一样简单$str = 'he said "hello WORLD"';
echo preg_replace('/\b([a-z])/e', 'strtoupper(\'$1\')', strtolower($str));
这匹配任何以word boundary开头的小写非重音拉丁字母。该字母将替换为大写的等效字母。
如果你想让它与其他语言和脚本一起使用,你必须得到一些想象力:
$str = 'he said "καλημέρα ΚΌΣΜΕ"'; // this has to be in UTF-8
echo preg_replace('/(?<!\p{L})(\p{Ll})/eu',
'mb_convert_case(\'$1\', MB_CASE_UPPER, \'UTF-8\')',
mb_convert_case($str, MB_CASE_LOWER, 'UTF-8'));
要理解这一点,您需要参考PCRE的Unicode功能,并注意我已将u
修饰符添加到preg_replace
。这匹配任何具有大写等效字符(具有模式\p{Ll}
)的unicode字母,前提是它前面没有任何其他字母(negative lookbehind带有模式\p{L}
)。然后用大写的等价物替换它。
<强> See it in action 强>
更新:看起来您打算只将空格视为字边界。这可以使用正则表达式
来完成(?<=\s|^)([a-z])
(?<=\s|^)(\p{Ll})
答案 1 :(得分:0)
尝试这样的事情(根据PHP.net评论)
$str = 'he said "hello world"';
echo preg_replace('/([^a-z\']|^)([a-z])/ie', '"$1".strtoupper("$2")', strtolower($str));
答案 2 :(得分:0)
使用手册! :D在php.net上找到
<?php
function ucwordsEx($str, $separator){
$str = str_replace($separator, " ", $str);
$str = ucwords(strtolower($str));
$str = str_replace(" ", $separator, $str);
return $str;
}
/*
Example:
*/
echo ucwordsEx("HELLO-my-NAME-iS-maNolO", "-");
/*
Prints: "Hello My Name Is Manolo"
*/
?>
答案 3 :(得分:0)
对于非unicode字符,以下字符将转换为驼峰大小写:
preg_replace('/\b([a-z])/e', 'strtoupper("$1")', strtolower($str));
答案 4 :(得分:0)
这是非常简单的代码
echo ucwords('he said '.ucwords('"hello world"')) ;
输出他说Hello World