regexmatch.dev
Explore
Open main menu
Save & Share
Facebook
Twitter
Tumblr
E-Mail
Pinterest
LinkedIn
Reddit
regex test
Published on Tue Mar 01 2022
testing the string abc xyx 12 13 a a b
Regex
Test String
abc xyx 12 13 a a b
Additional matching regexes for
regex test
Franklin Regex
Testing Franklin related regex matching cases.
regex test
testing the string abc xyx 12 13 a a b
Check if the title ends in is alid or not in java using regex
testing patterns http://stackoverflow.com/questions/30751885/check-if-a-string-ends-in-is-valid-or-not-in-java-using-regex
Simple domain.tld tester
For testing domain with TLD regExp.test("google.com") => true regExp.test("mad.engineering") => true
Persian words
Regex for find persian letters in a string
How to document a regex? Example 1
How to document a regex? Example 1: undocumented Regex which works with my test string
Remove HTML tags
This regex is used to remove HTML tag on string
find single character
Why this regEx not find all single character? Why not work Start of string and End of string in bracket?
C# Regex Class acts odd
Based on my understanding of Regex, the string “10†matches the Regex “^([0-9]*)(\\*)$â€. To validate it, I tried the regex and the text “10†on the website and it worked. But when I tried the same with C# code, it failed.Only by adding a "?", making the regex “^([0-9]*)(\\*)?$†makes the string "10" validate against the regex. I am confused why it behaves differently in the C# Regex class.
Escape regex meta characters
This expression escapes characters, which have a special meaning in regex, like .?[]/ and so on. Use it to transform a string that you want to use literally in another regex.