地址:http://www.pythonchallenge.com/pc/def/linkedlist.php
text = "original string"
text = text.replace("\n", "")
url = ''
for i in range(len(text)):
if (i < len(text)-8) and (text[i]+text[i+4]+text[i+8]).islower() and (text[i+1:i+4]+text[i+5:i+8]).isupper():
# 抽取第1个,第5个,第9个,检查是不是小写字母。抽取第2到第4,第6到第8,检查是否大写字母。
url += text[i+4]
print(url)