I have use Heave Forward and modify props.conf
source:...
SEDCMD-nourl = s/\surl=("\w+"|"\w+\[./\]"|)\s/ /g
RAW data:
i.g:
url="N/A" -----OK
or
url="/bases/av/kdb/i386/kdb-i386-1211g.xml.dif" ----Fail
or
url="/SimpleAuthWebService/SimpleAuth.asmx" ----- Fail
How should i do?
Thank you!
Could this work? Should remove the string 'url=' and all non-space characters directly following it.
SEDCMD-nourl = s/\surl=\S+/ /g
EDIT: small change to replace url with " " instead of \s
.
Hope this helps,
K
Thank you kindly support!
Could this work? Should remove the string 'url=' and all non-space characters directly following it.
SEDCMD-nourl = s/\surl=\S+/ /g
EDIT: small change to replace url with " " instead of \s
.
Hope this helps,
K
Thank you kindly support!
I'm sorry chengyu, it's not very clear to me what you are asking or what you are trying to achieve.