Python Regex Partial Replace

Aug 9, 2017
Use capture group and reference: re.sub(r"(match)(replace)", r"\1new", string)

Replacing only part of the matched string.

Example:
For the string http://subdomain.mydomain.com/hello.html I want to identify mydomain.com url and replace the subdomain only.

import reurl = "http://subdomain.mydomain.com/hello.html"re.sub(r"(://)([^.]+)(\.mydomain\.com)", r"\1www\3", url)# Outputhttp://www.mydomain.com/hello.html

❤️ Is this article helpful?

Buy me a coffee ☕ or support my work via PayPal to keep this space 🖖 and ad-free.

Do send some 💖 to @d_luaz or share this article.

✨ By Desmond Lua

A dream boy who enjoys making apps, travelling and making youtube videos. Follow me on @d_luaz

👶 Apps I built

Travelopy - discover travel places in Malaysia, Singapore, Taiwan, Japan.