Skip to content

Instantly share code, notes, and snippets.

View the-vishal's full-sized avatar
🔏
Keep it Simple, Stupid !!

Vishal Kumar the-vishal

🔏
Keep it Simple, Stupid !!
View GitHub Profile
@jonlabelle
jonlabelle / regular_expression_cheatsheet.md
Last active November 8, 2023 23:25
Regular Expression Cheatsheet

Regular Expression Cheatsheet

Anchors

^   Matches at the start of string or start of line if multi-line mode is
	enabled. Many regex implementations have multi-line mode enabled by
	default.

$ Matches at the end of string or end of line if multi-line mode is enabled.