door7474 发表于 2016-10-9 11:26:34

求教,web_reg_save_param_ex的正则表达式怎么使用非贪婪模式?

本帖最后由 door7474 于 2016-10-9 13:56 编辑

使用“.*”是可以匹配到内容的,不过是默认的贪婪模式。
现在需要使用非贪婪模式,于是改用“.*?”,不过就报错了。

web_reg_save_param_ex(
               "ParamName=ttt",
               "LB/RE=staff_code\", staff_code.*?expires",
               "RB/RE=\r\n",
               LAST);

报错信息:
Action.c(9): Error -26000: Failed to compile "staff_code", staff_code.*?expires" as Regular Expression, repetition-operator operand invalid.         
Action.c(9): Registering web_reg_save_param_ex highest severity level was "ERROR"         

菜鸟@大虾 发表于 2016-10-9 13:40:13

正则表达式无效哦
页: [1]
查看完整版本: 求教,web_reg_save_param_ex的正则表达式怎么使用非贪婪模式?