www.regexpal.com Open in urlscan Pro
54.156.232.14  Public Scan

Submitted URL: http://regexpal.com/
Effective URL: https://www.regexpal.com/
Submission: On April 26 via manual from NZ — Scanned from NZ

Form analysis 3 forms found in the DOM

POST

<form action="" method="POST" id="saveform"> Name: <input type="text" name="name" id="name" class="form-control"> Description: <textarea class="form-control" name="desc" id="desc"></textarea>
  <input type="hidden" name="expr">
  <input type="hidden" name="text">
  <input type="hidden" name="subst">
  <input type="hidden" name="engine">
  <br>
  <button class="form-control btn btn-primary" id="save">Save</button>
</form>

POST /login.php

<form method="POST" action="/login.php">
  <input class="form-control" type="text" name="username" placeholder="Email Address"><br>
  <input class="form-control" type="password" name="password" placeholder="Password"><br>
  <input class="form-control btn btn-primary" type="submit" value="Login">
</form>

POST /join.php

<form method="POST" action="/join.php">
  <input class="form-control" type="text" name="email" placeholder="Email Address"><br>
  <input class="form-control" type="password" name="password" placeholder="Password"><br>
  <input class="form-control btn btn-primary" type="submit" value="Join Now">
</form>

Text Content

Toggle navigation
RegEx Pal From Dan's Tools
 * Web Dev
   * HTML/JS/CSS Playground
   * HTML Color Codes
   * CSS Fonts
   * Online Diff Tool
   * .htaccess Generator
   * RegEx Testing
   * RGB & HEX Color Explorer
   * RGB to HEX Color Converter
   * TimeStamp Converter
   * Website Speed Test
   * Favicon.ico & App Icon Generator
   * Online Image Editor
   * CSS Sprite Generator
   * Keyword Tool
     
 * Conversion
   * Data
     * CSV To HTML Converter
     * CSV To JSON Converter
     * CSV To TSV Converter
     * CSV To XML Converter
     * JSON To CSV Converter
     * JSON To HTML Converter
     * JSON To TSV Converter
     * JSON To XML Converter
     * XML To CSV Converter
     * XML To HTML Converter
     * XML To JSON Converter
     * XML To TSV Converter
     * Convert Files
   * Numbers
     * Binary Converter
     * Binary To Decimal Converter
     * Binary To Hex Converter
     * Binary To Octal Converter
     * Unit Converter
     * Decimal To Binary Converter
     * Decimal To Hex Converter
     * Decimal To Octal Converter
     * Hex To Binary Converter
     * Hex To Decimal Converter
     * Hex To Octal Converter
     * Data Size Converter
     * Octal To Binary Converter
     * Octal To Decimal Converter
     * Octal To Hex Converter
   * Strings
     * Binary To String Converter
     * Hex To String Converter
     * HTML Entities Escape
     * HTML Entities Unescape
     * String To Binary Converter
     * String To Hex Converter
     * Strip and Remove HTML Tags
     * Strip and Remove XML Tags
     * Word Counter
     * XML Entities Escape
     * XML Entities Unescape
 * Encode/Decoders
   * Base64 Decode
   * Base64 Encode
   * MD5 Hash Generator
   * SHA-1 Hash Generator
   * SHA-256 Hash Generator
   * SHA-512 Hash Generator
   * URL Encode/Decode
 * Formatters
   * CSS Formatter
   * GO Formatter
   * HTML Beautifier & Formatter
   * Javascript Formatter
   * Javascript Obfuscate
   * JSON Formatter & Beautifier
   * JSON Editor
   * JSON Validator
   * Perl Formatter
   * PHP Formatter
   * Python Formatter
   * Ruby Formatter
   * SQL Formatter
   * XML Formatter & Beautifier
   * CSS Minify
   * Javascript Minify
   * JSON Minify
 * Internet
   * Email Validator
   * Is It Up Or Down
   * Default Router Settings
   * User Manuals
   * What is my IP
 * Join
 * Login


REGEX PAL

Dan's Tools
Library
{{getLabel()}}

{{getLabel()}}

{{getStaticRating()}}

--------------------------------------------------------------------------------



--------------------------------------------------------------------------------

--------------------------------------------------------------------------------


SUBSTITUTION

--------------------------------------------------------------------------------


 Help
 Reference
 Cheatsheet
 Examples
RegexPal is a tool to learn, build, & test Regular Expressions (RegEx / RegExp).

--------------------------------------------------------------------------------

 * Results update in real-time as you type.
 * Roll over a match or expression for details.
 * Save & share expressions with others.
 * Explore the Library for help & examples.
 * Undo & Redo with Ctrl-Z / Y.
 * Search for & rate Community patterns.

Character classes . any character except newline \w \d \s word, digit,
whitespace \W \D \S not word, digit, whitespace [abc] any of a, b, or c [^abc]
not a, b, or c [a-g] character between a & g Anchors ^abc$ start / end of the
string \b word boundary Escaped characters \. \* \\ escaped special characters
\t \n \r tab, linefeed, carriage return \u00A9 unicode escaped © Groups &
Lookaround (abc) capture group \1 backreference to group #1 (?:abc)
non-capturing group (?=abc) positive lookahead (?!abc) negative lookahead
Quantifiers & Alternation a* a+ a? 0 or more, 1 or more, 0 or 1 a{5} a{2,}
exactly five, two or more a{1,3} between one & three a+? a{2,}? match as few as
possible ab|cd match ab or cd

REGULAR EXPRESSION
 * JAVASCRIPTPCRE
 * FLAGS

infinite
 

//g




TEST STRING

xxxxxxxxxx



 

​




SUBSTITUTION
 * 

\n# $&:\n\t


 




xxxxxxxxxx







Expression Flags
 * 

--------------------------------------------------------------------------------

ignore case (i)
global (g)
multiline (m)
extended (x)
extra (X)
single line (s)
unicode (u)
Ungreedy (U)
Anchored (A)
dup subpattern names(J)



SAVE THIS REGEX

Name: Description:
Save

TOP REGULAR EXPRESSIONS

Url checker with or without http:// or https://
Only letters and numbers
Url Validation Regex | Regular Expression - Taha
date format (yyyy-mm-dd)
match whole word
nginx test
Extract String Between Two STRINGS
special characters check
Match anything enclosed by square brackets.
Find Substring within a string that begins and ends with paranthesis
Simple date dd/mm/yyyy
Blocking site with unblocked games
Match if doesn't start with string
RegEx for Json
Match anything after the specified
all except word
Java Variable
10-digit phone number with hyphens
Find any word in a list of words
Regular Expression For Decimal Validation | Taha


CHEAT SHEET

Character classes . any character except newline \w \d \s word, digit,
whitespace \W \D \S not word, digit, whitespace [abc] any of a, b, or c [^abc]
not a, b, or c [a-g] character between a & g Anchors ^abc$ start / end of the
string \b word boundary Escaped characters \. \* \\ escaped special characters
\t \n \r tab, linefeed, carriage return \u00A9 unicode escaped © Groups &
Lookaround (abc) capture group \1 backreference to group #1 (?:abc)
non-capturing group (?=abc) positive lookahead (?!abc) negative lookahead
Quantifiers & Alternation a* a+ a? 0 or more, 1 or more, 0 or 1 a{5} a{2,}
exactly five, two or more a{1,3} between one & three a+? a{2,}? match as few as
possible ab|cd match ab or cd





REGEXPAL

RegexPal isn't optimized for mobile devices yet. You can still take a look, but
it might be a bit quirky.

> Okay!





REGEXPAL

RegexPal requires a modern browser. Please update your browser to the latest
version and try again.





×Close


LOGIN

If you don't already have an account, Register Now




Close
×Close


JOIN

Join to access discussion forums and premium features of the site.





Close
×Close


PLEASE SHARE!

Thank you for using my tool. If you could share this tool with your friends,
that would be a huge help:
Tweet



Or follow us to learn about our latest tools:
Follow @danstools00

Close