在给大家讲述这个问题之前,先给大家看一段nginx配置. 我们用到了 set-misc-nginx-module
复制代码 代码如下:
复制代码
location /test/ {
default_type text/html;
set_md5 $hash "secret"$remote_addr;
echo $hash;
}
location /test/ {
default_type text/html;
set_md5 $hash "secret"$remote_addr;
echo $hash;
}
这样输出来的内容,可能是下面这样的
复制代码 代码如下:
复制代码
202cb962ac59075b964b07152d234b70
202cb962ac59075b964b07152d234b70
但如果我们要截取某几位字符怎么办呢?
首先大家想到的肯定是使用模块来实现, 但只能这样吗? 有没有更方便的方式呢?
有的.
我们可以巧妙地使用if + 正则表达式来实现这个小需求:
复制代码 代码如下:
复制代码
location /test/ {
default_type text/html;
set_md5 $hash "secret"$remote_addr;
if ( $hash ~ ^[\w][\w][\w][\w][\w][\w][\w][\w]([\w][\w][\w][\w][\w][\w][\w][\w]) ) {
set $hash $1;
}
echo $hash;
}
location /test/ {
default_type text/html;
set_md5 $hash "secret"$remote_addr;
if ( $hash ~ ^[\w][\w][\w][\w][\w][\w][\w][\w]([\w][\w][\w][\w][\w][\w][\w][\w]) ) {
set $hash $1;
}
echo $hash;
}
访问/test/输出的就是:
复制代码 代码如下:
复制代码
ac59075b
ac59075b
最后
以上就是粗犷火最近收集整理的关于Nginx if语句加正则表达式实现字符串截断的全部内容,更多相关Nginx内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复