所以我有一个看起来像这样的字符串:
profile=123456&imagehd=image%20profile%20123456.hd.jpg&imagesd=image%20profile%20123456.sd.jpg&name=test_user
我想做的是在正则表达式模式的帮助下提取 imagehd 和 imagesd 字符串(image%20profile%20123456.hd.jpg
和image%20profile%20123456.sd.jpg
)。我对正则表达式模式没有经验,这就是我问你们的原因。我在想,为了简化事情,只需通过 url 解码器运行字符串以使其可用,然后获取字符串。
字符串位于imagehd=
和之间&
(用于高清图像)和介于imagesd=
和之间&
(用于标清图像)。