如何在 php 中使用正则表达式匹配阿拉伯字母

发布于 2024-10-01 18:02:11 字数 145 浏览 3 评论 0原文

我如何在 php

我的代码中将阿拉伯字母与正则表达式匹配

$name = $_GET("name");

if (arabic letters only and spaces) // using regexp

How can i Match arabic letters with regexp in php

My Code

$name = $_GET("name");

if (arabic letters only and spaces) // using regexp

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

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

发布评论

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

评论(2

心凉 2024-10-08 18:02:11

我想你的答案就在这里:
根据 PHP 中的字形检查字符串的语言

if(preg_match("/\p{Arabic}/u", $name])) {
echo 'valid';
} 

I think your answer is here:
Check the language of string based on glyphs in PHP

if(preg_match("/\p{Arabic}/u", $name])) {
echo 'valid';
} 
绿萝 2024-10-08 18:02:11

我使用的是 PHP 版本 7.3.33,以下解决方案对我有用。

if(preg_match("/^[\x{0621}-\x{064A} ]+$/u", $name])) {
 echo 'Yes, it contains Arabic letters only and spaces';
} 

I am using PHP version 7.3.33 and the following solution worked for me.

if(preg_match("/^[\x{0621}-\x{064A} ]+$/u", $name])) {
 echo 'Yes, it contains Arabic letters only and spaces';
} 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文