Skip to content

Instantly share code, notes, and snippets.

@AshikNesin
Last active February 4, 2024 17:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AshikNesin/7851df2a57041e10ef88 to your computer and use it in GitHub Desktop.
Save AshikNesin/7851df2a57041e10ef88 to your computer and use it in GitHub Desktop.
Regular Expression to check GitHub Profile URL
/^(https?:\/\/)?(www\.)?github\.com\/[a-zA-Z0-9_]{1,25}$/igm

@unclebay143
Copy link

Got here while looking for a similar expression for google form to accept only GitHub profile URL, that didn't work but the following worked

^https?://github.com/([a-zA-Z0-9._-]+)$

@AshikNesin
Copy link
Author

Got here while looking for a similar expression for google form to accept only GitHub profile URL, that didn't work but the following worked

^https?://github.com/([a-zA-Z0-9._-]+)$

Thanks for sharing, @unclebay143 🙌

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment