Skip to content

Instantly share code, notes, and snippets.

View smindre1's full-sized avatar

Shane Mindreau smindre1

View GitHub Profile
@smindre1
smindre1 / CS335Midterm.md
Last active April 21, 2026 12:53
Data Structures and Sorting (C++)

Midterm 2 Studyguide

CSCI 335 (Spring 2026 - Hunter College)

By Shane Mindreau (4/18/2026)

Topics:

  1. Maps
  2. Sets
  3. B-trees
@smindre1
smindre1 / gist-An_Introduction_To_Regex.md
Last active November 22, 2023 04:43
An Introduction To Regex

An Introduction To Regex

Regex, short for 'regular expression', is a syntax that allows you to match strings with specific patterns. You can imagine it as a text search that can become very advanced & specific depending on how many filters, Regex Components, are added.

Summary

I will be explaining Regex used in a Javascript environment with all declarations of variables and commands being in JS, however, the Regex notation itself is a universal language that can be applied to many different coding languages. By the end of this article, I hope you will have enough information to set up Regex Syntax in your own coding programs.

Table of Contents