我的 python 脚本中有这一行:
url = tree.find("//video/products/product/read_only_info/read_only_value[@key='storeURL-GB']")
但有时 storeURL-GB 键会更改最后两个国家/地区代码字母,所以我尝试使用这样的东西,但它不起作用:
url = tree.find("//video/products/product/read_only_info/read_only_value[@key='storeURL-\.*']")
请问有什么建议吗?