Daha karmaşık olan başka bir şey olmadığı için, bunu bana yardımcı olduğu için paylaşmak istedim.
Başlangıçta kullandığım şey bu:
import requests
import re
url = '/programming/10711116/strip-spaces-tabs-newlines-python'
headers = {'user-agent': 'my-app/0.0.1'}
r = requests.get(url, headers=headers)
print("{}".format(r.content))
İstenmeyen Sonuç:
b'<!DOCTYPE html>\r\n\r\n\r\n <html itemscope itemtype="http://schema.org/QAPage" class="html__responsive">\r\n\r\n <head>\r\n\r\n <title>string - Strip spaces/tabs/newlines - python - Stack Overflow</title>\r\n <link
Ben bunu şu şekilde değiştirdim:
import requests
import re
url = '/programming/10711116/strip-spaces-tabs-newlines-python'
headers = {'user-agent': 'my-app/0.0.1'}
r = requests.get(url, headers=headers)
regex = r'\s+'
print("CNT: {}".format(re.sub(regex, " ", r.content.decode('utf-8'))))
İstenen sonuç:
<!DOCTYPE html> <html itemscope itemtype="http://schema.org/QAPage" class="html__responsive"> <head> <title>string - Strip spaces/tabs/newlines - python - Stack Overflow</title>
@MattH'ın bahsettiği kesin normal ifade, onu koduma uydururken benim için işe yarayan şeydi. Teşekkürler!
Not: Bu python3