有没有办法让LogParser (2.2) URLUNESCAPE函数将“+”解码为“”(空格)?
logparser "select URLUNESCAPE('test+value') into stdout from system"产生以下输出
'test+value'
------------
test+value
test+value
test+value
test+value
test+value
test+value
test+value
test+value
test+value
test+value
Press a key...发布于 2020-11-18 11:55:11
遗憾的是,由于+ <-> <space>替换在技术上不是URL转义(而%20 <-> <space>是)。对于此任务,您可能需要考虑将REPLACE_CHR用作:
REPLACE_CHR('test+value', '+', ' ')https://stackoverflow.com/questions/64887885
复制相似问题