正则表达式模式做什么?

2022-03-22 00:00:00 regex php preg-replace

有一个常用的正则表达式用于标识URL~[^\pLd]+~u,但是第一个preg_replace()中的\pL是什么意思?

以下是一些示例:

  • How can I replace ":" with "/" in slugify function?
  • http://snipplr.com/view/22741/slugify-a-string-in-php/
  • http://sourcecookbook.com/en/recipes/8/function-to-slugify-strings-in-php
  • http://www.daniweb.com/web-development/php/threads/471380/php-slugify-two-variables-together

unicode

\pL是推荐答案属性快捷方式。也可以写为p{L}p{Letter}。它可以匹配来自任何语言的任何类型的字母。

相关文章