Skip to content

Instantly share code, notes, and snippets.

@ap-p
ap-p / raptor.md
Created September 18, 2025 15:12
tags status tech requester
work
in progress
SQL, Python, ETL
ERAC

RAPTOR Data Warehouse

Project Overview

Name: RAPTOR - Radiology Analytics Platform for Trends, Outcomes, & Recommendations

@ap-p
ap-p / regex.md
Created September 15, 2025 19:30

Basic Syntax

  • . : Matches any character except a newline.
    • Example: a.b matches "aab", "acb", etc.
  • ^ : Matches the beginning of the string.
    • Example: ^abc matches "abc" only if it appears at the start of the string.
  • $ : Matches the end of the string.
    • Example: abc$ matches "abc" only if it appears at the end of the string.
  • [] : Matches any one of the characters inside the brackets.
  • Example: [aeiou] matches any vowel.