我想把字符串大写如下:
¿"hello"?
我想让我的功能回归
¿"Hello"?
我试过regex和preg_match,没有运气……
这是我之前的问题,与此相关:
“preg_match is matching two characters when it should only match one”
谢谢你们!
最佳答案 您可以使用
preg_replace_callback执行此操作:
preg_replace_callback('/^([^a-z]*)([a-z])/i', function($matches){
return $matches[1] . strtoupper($matches[2]);
}, '¿"hello"?');
// ¿"Hello"?