我正在尝试编写一个清理用户输入的函数。
我并不想让它变得完美。我宁愿用小写的名字和首字母缩写词来表示大写的完整段落。
我认为该函数应该使用正则表达式,但我对这些很糟糕,我需要一些帮助。
如果下面的表达式后跟一个字母,我想把那个字母写成大写。
"."
". " (followed by a space)
"!"
"! " (followed by a space)
"?"
"? " (followed by a space)
更好的是,该功能可以在“。”,“!”之后添加一个空格。和“?”如果那些后面跟着一封信。
如何实现这一目标?
答案 0 :(得分:32)
$output = preg_replace('/([.!?])\s*(\w)/e', "strtoupper('\\1 \\2')", ucfirst(strtolower($input)));
由于在PHP 5.5.0中不推荐使用修饰符 e :
$output = preg_replace_callback('/([.!?])\s*(\w)/', function ($matches) {
return strtoupper($matches[1] . ' ' . $matches[2]);
}, ucfirst(strtolower($input)));
答案 1 :(得分:3)
以下是您想要的代码:
<?php
$str = "paste your code! below. codepad will run it. are you sure?ok";
//first we make everything lowercase, and
//then make the first letter if the entire string capitalized
$str = ucfirst(strtolower($str));
//now capitalize every letter after a . ? and ! followed by space
$str = preg_replace_callback('/[.!?] .*?\w/',
create_function('$matches', 'return strtoupper($matches[0]);'), $str);
//print the result
echo $str . "\n";
?>
输出: Paste your code! Below. Codepad will run it. Are you sure?ok
答案 2 :(得分:1)
使用./!/?
作为分隔符将字符串分隔为数组。遍历每个字符串并使用ucfirst(strtolower($currentString))
,然后再将它们连接成一个字符串。
答案 3 :(得分:1)
$output = preg_replace('/([\.!\?]\s?\w)/e', "strtoupper('$1')", $input)
答案 4 :(得分:1)
此:
<?
$text = "abc. def! ghi? jkl.\n";
print $text;
$text = preg_replace("/([.!?]\s*\w)/e", "strtoupper('$1')", $text);
print $text;
?>
Output:
abc. def! ghi? jkl.
abc. Def! Ghi? Jkl.
请注意,不必须逃脱。!?在[]。
答案 5 :(得分:0)
这个怎么样?没有正则表达式。
$letters = array(
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n',
'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'
);
foreach ($letters as $letter) {
$string = str_replace('. ' . $letter, '. ' . ucwords($letter), $string);
$string = str_replace('? ' . $letter, '? ' . ucwords($letter), $string);
$string = str_replace('! ' . $letter, '! ' . ucwords($letter), $string);
}
对我来说很好。
答案 6 :(得分:-1)
$Tasks=["monday"=>"maths","tuesday"=>"physics","wednesday"=>"chemistry"];
foreach($Tasks as $task=>$subject){
echo "<b>".ucwords($task)."</b> : ".ucwords($subject)."<br/>";
}