验证 PHP 中的西里尔字母输入

发布于 2024-11-27 22:15:06 字数 80 浏览 0 评论 0原文

有没有办法(正则表达式?)来检查字符串是否仅由西里尔字母数字字符组成?

我需要验证输入是否在西里尔字母、数字、破折号和空格的范围内

Is there a way (regular expression?) to check if a string is composed only of Cyrillic alphanumeric characters?

I need to validate an input to be in range of the Cyrillic alphabet, plus numbers, dashes and spaces

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

追星践月 2024-12-04 22:15:07

\p{Cyrillic} 匹配西里尔字母(您可以使用阿拉伯语希腊语等来表示其他字母)

\d 匹配数字

\s 匹配空白字符

\- 匹配破折号

<?php
    header('Content-Type: text/html; charset=utf-8'); 
    $pattern  = "/^[\p{Cyrillic}\d\s\-]+$/u";
    $subjects = array(12, "ab", "АБ", '--', '__');

    foreach($subjects as $subject){
        $match = (bool) preg_match($pattern, $subject);
        if($match)  
            echo "$subject matches the testing pattern<br />";
        else
            echo "$subject does not match the testing pattern<br />";
    }
?>

\p{Cyrillic} matches Cyrillic characters (you can use Arabic, Greek, etc. for other alphabets)

\d matches numbers

\s matches whitespace characters

\- matches dashes

<?php
    header('Content-Type: text/html; charset=utf-8'); 
    $pattern  = "/^[\p{Cyrillic}\d\s\-]+$/u";
    $subjects = array(12, "ab", "АБ", '--', '__');

    foreach($subjects as $subject){
        $match = (bool) preg_match($pattern, $subject);
        if($match)  
            echo "$subject matches the testing pattern<br />";
        else
            echo "$subject does not match the testing pattern<br />";
    }
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文