正则表达式允许数字值在1之间

在我的.htaccess文件中,我有以下规则:

RewriteRule ^gallery/[0-9][0-9][0-9]/$ index.php?gallery_id=$1

它允许任何长度为三位的数字。 我不知道如何允许少于三位数字(或者超过三位数字)。

对于正则表达式我还是个新手。

谢谢!


你想要做一些事情

[0-9]{1,3}

这里有一些很好的例子。 向下滚动到接近页面底部的位置,有各种范围选项(不适用于它们的正确术语)的示例。

链接地址: http://www.djcxy.com/p/86987.html

上一篇: Regular expression to allow for number values between 1

下一篇: regex to get the number from the end of a string