TIL capitalising letters with regex
Fixing a code analysis auto-fix which made acronyms less clear
Jun 3, 20262 min read

Search for a command to run...
Articles tagged with #regex
Fixing a code analysis auto-fix which made acronyms less clear

I was recently asked to copy some data in a SQL Server database but to exclude records which had the words 'To Delete' in their names. This is a simple enough task - throughout the SQL I wrote, I added to all the WHERE clauses this line: AND ISNULL([...

How to use a negative lookbehind in regex

A beginner's guide to using regex
