Using Claude Code with Perl
Author tests Claude Code's AI-assisted code review and improvement suggestions on a legacy Perl module, noting its adaptability and language quirks.
Author tests Claude Code's AI-assisted code review and improvement suggestions on a legacy Perl module, noting its adaptability and language quirks.
A guide on using the sed command-line tool to efficiently print specific lines or ranges from large files, useful for debugging.
Tips for making JavaScript regex more readable using flags, named capture groups, whitespace, and the Regex+ library.
A comprehensive cheat sheet covering the basics of Regular Expressions (RegEx), including syntax, quantifiers, character classes, and practical examples.
Explains ECMAScript 2025's new regular expression pattern modifiers, allowing flags like case-insensitivity to be applied to specific parts of a regex.
A comprehensive guide to using the PowerShell Replace method for text manipulation, covering syntax, examples, and best practices.
Learn how to use JavaScript regular expressions to extract numbers from strings, a common task when processing user input from forms.
The author explores routing in web frameworks and details the implementation of a flat-list routing system for their Lua-based Atlas framework.
A beginner-friendly guide to common pitfalls and best practices when writing regular expressions, with examples in JavaScript.
Learn three methods to replace all instances of a substring in JavaScript: split/join, replace() with regex, and replaceAll().
A developer shares their journey learning Regex by applying it to normalize phone numbers in Active Directory, moving from copy-pasting to understanding patterns.
Explains the Terraform replace() function for string manipulation, including regex usage and practical examples.
A practical guide to a robust regular expression pattern for accurately extracting quoted strings, avoiding common pitfalls like greedy matching and escaped characters.
Fixing a TypeScript error in AngularJS when initializing a RegExp object incorrectly, with two valid solutions.
A beginner-friendly introduction to Regular Expressions in JavaScript, covering basic concepts, syntax, and practical applications.
Explains how to use Unicode property escapes (\p{...}) in JavaScript regexes, a feature added in ES2018, for matching characters by script, category, or properties like emoji.
A curated list of resources and tutorials for improving Python programming style, covering basics to advanced topics like design patterns and functional programming.
A PHP tutorial on using regular expressions to convert hashtags, mentions, and URLs in tweets into clickable HTML links.
Introducing a lightweight, declarative Java library for parsing custom file formats using annotated beans and enhanced regular expressions.
Explores teaching approaches: starting with general rules vs. specific cases, using regex quantifiers as a primary example.