描述:
将URL串编码处理。
语法:
urlencode(s,cs)
备注:
将URL串编码处理。
参数:
s |
URL串 |
cs |
字符集 |
选项:
@r |
解码,urlencode的逆动作 |
返回值:
字符串
示例:
|
A |
|
1 |
=urlencode("http://localhost:8503/p1.dfx()","GBK") |
|
2 |
=urlencode@r("http%3A%2F%2Flocalhost%3A8503%2Fp1.dfx%28%29","GBK") |
|