Regex (very incomplete) implementation in pure Python. Only intended to illustrate the related concepts in a simple way, hopefully. As part of what I call the "How it's made - Software edition" ...
While learning python I was tasked with replacing text with markdown urls. Due to my lack of knowledge and subsequent learnings, I want to share the solutions to illustrate how code can be simplified ...
I was involved in a recent discussion on the "best" way to remove a given parameter from a URL string. The conversation began with using string primitives to split and join the parameter, a method ...