PHP: is there an isLetter() function or equivalent

2019-06-20 17:14发布

I am no PHP expert. I am looking for the PHP equivalent of isLetter() in Java, but I can't find it. Does it exist?

I need to extract letters from a given string and make them lower case, for example: "Ap.ér4i5T i6f;" should give "apéritif'. So, yes, there are accentuated characters in my strings.

4条回答
戒情不戒烟
2楼-- · 2019-06-20 17:38

In addition to regex / preg_replace, you can also use strtoupper($string) and strtolower($string), if you need to universally upper-case a string. As Konrad mentioned, preg_replace is probably your best bet though.

http://php.net/manual/en/function.strtoupper.php

http://www.php.net/manual/en/function.strtolower.php

查看更多
Ridiculous、
3楼-- · 2019-06-20 17:40

In PHP (and in Java) you wouldn’t use isLetter to implement it, you’d rather replace all characters that aren’t letters using a regular expression:

echo preg_replace('/\P{L}/', '', input);

Loop up the documentation of preg_replace and the regex pattern syntax desciption, in particular the relevant Unicode character classes.

查看更多
唯我独甜
4楼-- · 2019-06-20 17:43
放我归山
5楼-- · 2019-06-20 17:43

You could probably use the php-slugs source code, with appropriate modifications.

查看更多
登录 后发表回答