Validation

10 pages

Extraction

10 pages

Replacement

10 pages

Security

5 pages

Developer

15 pages
IPv6 Address/(?:[0-9a-fA-F]{1,4}:){2,7}[0-9a-fA-F]{1,4}|::1/Matches many common IPv6 textual addresses.MAC Address/^(?:[0-9A-Fa-f]{2}[:-]){5}[0-9A-Fa-f]{2}$/Matches colon or dash separated MAC addresses.Base64 String/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/Matches standard Base64 encoded text shape.JWT Token Shape/^[A-Za-z0-9_-]+\.[A-Za-z0-9_-]+\.[A-Za-z0-9_-]+$/Matches three-part JWT token shape.Semantic Version/^\d+\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?(?:\+[0-9A-Za-z.-]+)?$/Matches SemVer versions with optional pre-release and build metadata.Docker Image Tag/^[a-z0-9]+(?:[._/-][a-z0-9]+)*:[\w][\w.-]{0,127}$/Matches common Docker image references with a tag.Git Commit Hash/^[0-9a-f]{7,40}$/Matches short or full lowercase Git commit hashes.MongoDB ObjectId/^[0-9a-fA-F]{24}$/Matches MongoDB ObjectId hex strings.Data URI/^data:[\w/+.-]+;base64,[A-Za-z0-9+/=]+$/Matches common base64 data URI values.SSH Public Key/^ssh-(?:rsa|ed25519)\s+[A-Za-z0-9+/=]+(?:\s+.*)?$/Matches ssh-rsa and ssh-ed25519 public key lines.JSONP Callback/^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*)*$/Matches JavaScript identifier paths often used as JSONP callbacks.CSS Color Value/^(?:#[0-9a-fA-F]{3,8}|rgba?\([^)]*\)|hsla?\([^)]*\)|[a-zA-Z]+)$/Matches common CSS color value formats.Stack Trace Line/^\s*at\s+.+\(.+:\d+:\d+\)$/Matches common JavaScript stack trace lines.Cron Expression Shape/^\S+\s+\S+\s+\S+\s+\S+\s+\S+$/Matches five-field cron expression shape.Markdown Image/!\[([^\]]*)\]\(([^)]+)\)/Matches Markdown image syntax.