求教,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" 正则表达式无效哦
页:
[1]