大写字符串的第一个字母(以特殊字符开头) – PHP

我想把字符串大写如下:

¿"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"?
点赞