Skip to content

Instantly share code, notes, and snippets.

View pallavJha's full-sized avatar
🏓
🤘🎸🎺🎵🎹

Pallav Jha pallavJha

🏓
🤘🎸🎺🎵🎹
View GitHub Profile
\b: Thsis matches a word boundary, ensuring that we only match complete words and not parts of larger words.
(?:ga|pit): This matches either "" or "". The | character represents "or" and the "?:"syntax creates a non-capturing group.
\b: This matches another word boundary, ensuring that we only match complete words.
/g: This is the global flag/pattern, so we match every occurrence of the pattern in the string, not just the first one.
/i: Case-insensitive flag/pattern to locate both lower-case and upper-case letters ("", "", "", "", "", "", "", etc.)
@pallavJha
pallavJha / NumberFormat.md
Last active July 3, 2024 06:03
2Dummy Gist For NumberFormat Test

686682812