1
vote
1answer
158 views
Regex/Textmate Confusion
I'm trying to create a Textmate snippet, but have run into some difficulties. Basically, I want to type in a Name and split it into its parts.
Example,
Bill Gates: (Bill), (bill), …
3
votes
2answers
264 views
Python Regular Expression Substitution
I have a block of text, and for every regex match, I want to substitute that match with the return value from another function. The argument to this function is of course the matched text.
…
