Domain Summary

regex101.com

regular expression tester with syntax highlighting, explanation, cheat sheet for php/pcre, python, go, javascript, java, c#/.net, rust.

regex101: build, test, and debug regex

Global rank: #69602
Daily visitors: 38.63K
Monthly Visits: 1,158,822
Pageviews per user: 1.59
Registrar Abuse Contact Email: [email protected]
Registrant Phone: +354.4212434
Rating
TLD: com
IP Address: 78.47.220.195
Organization: Hetzner Online GmbH
Category: Computers Electronics and Technology >
Computers Electronics and Technology
regex101.com Icon
regex101.com
Last Status:
Online
Last Updated: 25 day ago
loading

About Website

Click here to check amazing regex101com content for United States. Otherwise, check out these important facts you probably never knew about regex101.com

regular expression tester with syntax highlighting, explanation, cheat sheet for php/pcre, python, go, javascript, java, c#/.net, rust.

Visit regex101.comRight Arrow
Trust Score DNS Competitors Traffic SSL HTTP Headers WHOIS Reviews SEO

regex101.com Trust Score

regex101.com is probably legit as the trust score is reasonable. Our algorithm rated regex101.com a 81. Although our rating of regex101.com is medium to low risk, we encourage you to always vote as the evaluation of the site is done automatically.

The trust rating is high. Might be safe.
Trustscore
81 / 100

What is your feeling about regex101.com?

rating 10
rating 20
rating 30
rating 41
rating 51
4.5 / 5 Based on 2 Reviews
View/Add Comments

Which Sites are Alternatives & Competitors to regex101.com?

Explore the top alternatives and rivals of regex101.com in June 2025, and assess their data relating to website traffic, SEO, Web Server Information, and Whois. Refer to the list below for the best competitors of regex101.com, and simply click on each one to delve into their specific details.

Mentioned on Their Website:

  • regex101.com
    regex101: Regex Cheatsheet

    https://regex101.com/r/Tju8wh/1

    Regular expression tester with syntax highlighting, explanation, cheat sheet for PHP/PCRE, Python, GO, JavaScript, Java, C#/.NET, Rust.

  • blog.betrybe.com
    Regex 101: aprenda a testar expressões regulares! [Tutorial]

    https://blog.betrybe.com/tecnologia/regex-101/

    O Regex 101 é uma ferramenta hospedada online e pode ser acessada pelo endereço regex101.com em qualquer navegador. Esse recurso é utilizado por um grande número de pessoas desenvolvedoras para realizar testes de expressões regulares. O que é o Regex e qual a sua importância para o desenvolvimento de aplicações?

  • regex101.com
    regex101: Account Page

    https://regex101.com/account/mine

    regex101: Account Page. Account Page. You do not have to create an account, just select an existing account from one of the supported service providers. Only the bare minimum information is retrieved and saved in order to identify your account. By signing in, all your expressions will be automatically saved to your account, where you have ...

  • softwarerecs.stackexchange.com
    Regex Desktop Tool for Offline Use (Cross Platform)

    https://softwarerecs.stackexchange.com/questions/71601/regex-desktop-tool-for-offline-use-cross-platform

    There are a plethora of SO questions a decade old describing cross platform desktop Regex tools. It seems the most popular options were: Kodos (no commits in the past decade, runs off deprecated Qt3). Regexr (desktop version ran on Adobe Air, no longer available). RegExBuddy ($40, maybe it's the only option). With Perl 5.10 use re 'debug';. …

  • regex101.com
    regex101: Regex Quiz

    https://regex101.com/quiz/

    Welcome to the regex101 regex quiz! This is an interactive learning tool you can use to improve your understanding of regular expressions, and their different applications. The …

  • regex101.com
    regex101: Community Pattern Library

    https://regex101.com/library

    Browse and use over 20,000 regular expressions for various purposes, such as email validation, URL extraction, color coding, etc. regex101 is a website that lets you test and …

  • reddit.com
    regex101.com: After spending more time than I care to admit I …

    https://www.reddit.com/r/programming/comments/55pdm7/regex101com_after_spending_more_time_than_i_care/

    I've been using regexr, but is there anything in your site that's better (other than it's made by a redditor).I'll give it a try, but the first thing I noticed, like u/Naihonn said, scrolling is broken on the main page. I hope you fix it because other than that, this is a quality site. P.S.

  • stackoverflow.com
    Perl type regex working in regex101.com, but not in command-line

    https://stackoverflow.com/questions/75533525/perl-type-regex-working-in-regex101-com-but-not-in-command-line

    When I perform pattern matching in regex101.com using '\n' as a search pattern, regex101.com finds 4 matches (ie. 4 lines that contain the matching pattern, which are the first four lines). However, when I perform the same query using command line perl: perl -ne 'print if /\n/' test.txt

  • gis.stackexchange.com
    attribute table - Why do regular expressions that work on regex101.com

    https://gis.stackexchange.com/questions/217377/why-do-regular-expressions-that-work-on-regex101-com-not-work-in-qgis

    QGIS is simple PCRE syntax-- what most libraries and languages have moved to use.In PCRE regex's ^ anchor the pattern at the beginning of a string. /foo/ matches anywhere /^foo/ Matches only at the beginning of the string. However (^\\d[0-9]+) shouldn't work at all unless MultiLineOption is set in the QGIS source -- and it's not so a ^ anywhere but at …

  • blog.csdn.net
    【正则表达式】regex101超好用的正则表达式测试和学习工具(内 …

    https://blog.csdn.net/QH2107/article/details/129868772

    文章浏览阅读1.5k次。regex101是一个在线的正则表达式测试和学习工具,可以帮助用户测试和调试正则表达式。2. 在左侧的输入框中输入要匹配的文本。3. 在上方的正则表达式输入框中输入你的正则表达式。4. 选择正则表达式的语法类型(如PCRE、JavaScript等)。5.

  • discuss.python.org
    How to test Python regex replace on regex101.com?

    https://discuss.python.org/t/how-to-test-python-regex-replace-on-regex101-com/49117

    I have about 22,000 addresses. I’m trying to remove duplicate addresses. To do that I have to normalize each address, which includes the first name, last name (we want to send mailings to every person in the same house), street address 1 and address 2, city, state and zip. In the street address I’m deleting a bunch of stuff that I consider not useful …

  • federicoterzi.com
    Regex101 - The Ultimate Tool for Regular Expressions

    https://federicoterzi.com/blog/regex101-the-ultimate-tool-for-regular-expressions/

    As you can already tell, only the first and fourth addresses are correct. A first attempt would be using the [a-zA-Z]+\@[a-zA-Z]+\.[a-z]+ Regex (which doesn't account for many things, but for this example is enough).. Open Regex101 and paste the input in the TEST STRING field, then type the regex on the REGULAR EXPRESSION field. As a result, we will see: ...

  • regex101.com
    regex101: test

    https://regex101.com/r/bLIa7r/1

    Match a single character present in the list below. [2-9] + matches the previous token between one and unlimited times, as many times as possible, giving back as needed (greedy) 2-9 matches a single character in the range between 2 (index 50) and 9 (index 57) (case sensitive) Match a single character present in the list below.

  • stackoverflow.com
    My regex works in regex101.com sandbox but not in actual …

    https://stackoverflow.com/questions/36502467/my-regex-works-in-regex101-com-sandbox-but-not-in-actual-javascript

    Teams. Q&A for work. Connect and share knowledge within a single location that is structured and easy to search. Learn more about Teams

  • forum.knime.com
    Regex 101 Query in KNIME

    https://forum.knime.com/t/regex-101-query-in-knime/72324

    If you try that in regex101.com, you should find it works . trafalgarlaw September 5, 2023, 8:53am 3. Another curiosity question, would like to know what’s this [0] is for? Or what’s its purpose why is it in the code? @takbb. Yeah, thank you it worked now in Regex 101, amazing!!! takbb ...

  • regex101.com
    regex101: Account Page

    https://regex101.com/account

    regex101: Account Page. Account Page. You do not have to create an account, just select an existing account from one of the supported service providers. Only the bare minimum information is retrieved and saved in order to identify your account. By signing in, all your expressions will be automatically saved to your account, where you have ...

  • regex101.com
    regex101: Replace word

    https://regex101.com/r/kUW4Ug/1

    Regular expression tester with syntax highlighting, explanation, cheat sheet for PHP/PCRE, Python, GO, JavaScript, Java, C#/.NET, Rust.

  • community.mp3tag.de
    Help building correct Regular Exprssions - https://regex101.com/

    https://community.mp3tag.de/t/help-building-correct-regular-exprssions-https-regex101-com/62470

    Hoping I'm not doing anything amiss by recommending this really terrific website one can use to build regular expressions and test them against a known string: I just today was able to use it to figure out how to use the folder for some mp3 files to put a value in the Discnumber tag (folders are based on Vol#CD# of the Bach Complete …

  • blog.shin1x1.com
    パフォーマンスを意識して正規表現を書く - Shin x Blog

    https://blog.shin1x1.com/entry/regex-performance

    regex101.com. 例えば、上記の例(\d+\d[^\d])であれば、下のような表示となります。これを見ると、文字列 123 に対して、14 steps がかかっていることが分かります。. ここで文字列を 123456789 という 9 文字に増やすと、91 steps となります。. マッチングが膨大になる場合を見るために、(\d*\d+)+\d[^\d] と ...

  • stackoverflow.com
    Non-capturing group ignored by regex101.com - Stack Overflow

    https://stackoverflow.com/questions/33167399/non-capturing-group-ignored-by-regex101-com

    regex101.com shows 1 match!! Below also a javascript snippet to check the same regexp, and the result, as you can see also is different from what supposed to be - 2 matches -> 2 replacements will occur. It seems that non-capturing group is simply ignored. So, what is wrong, why results differs and what is the correct regexp to solve initial ...

  • stackoverflow.com
    debugging - How do you debug a regex? - Stack Overflow

    https://stackoverflow.com/questions/2348694/how-do-you-debug-a-regex

    Mar 28, 2013 at 11:29. If you have Visual Studio, you can set a breakpoint near your problem area (eg: RegEx.Replace(...), switch to 'Immediate window' and try out a few 'Regex.IsMatch(yourDebugInputString, yourDebugInputRegEx) commands to quickly zero in the issue. – DeepSpace101.

  • regextutorial.org
    Regex Tutorial - A Cheatsheet with Examples - Regextutorial.org

    https://regextutorial.org/

    Regex Tutorial - A Cheatsheet with Examples! Regular expressions or commonly called as Regex or Regexp is technically a string (a combination of alphabets, numbers and special characters) of text which helps in extracting information from text by matching, searching and sorting. It can also be used to replace text, regex define a search pattern ...

  • stackoverflow.com
    regex - regex101 - match all occurrences of a string only in the …

    https://stackoverflow.com/questions/76274680/regex101-match-all-occurrences-of-a-string-only-in-the-first-line-where-it-is

    You can do this with regex flavours like PCRE, which support an end-of-match token (\G) and can be set to single line matching (/s).The idea is to match the first target by anchoring to the beginning of the line while …

  • petanikode.com
    Apa itu Regex? dan Apa Manfaatnya dalam Pemrograman?

    https://www.petanikode.com/regex/

    Penjelasan detail tentang pola ini, bisa kamu lihat di regex101.com. Contoh lainnya: Pada kasus ini, saya ingin mengambil data nama:nama/domain dan menghilangkan teks di belakangnya. Hasilnya setelah disubtitusi: Tantangan Belajar Regex. Menurut saya: Tantangan tersulit dalam belajar Regex adalah membuat sendiri dan …

  • community.qualtrics.com
    Regex to mask Account number - works in regex101.com, but not …

    https://community.qualtrics.com/custom-code-12/regex-to-mask-account-number-works-in-regex101-com-but-not-in-qualtrics-21583

    My code passes logic tests in regex101.com and works how I want it to, see below. But when I put the code to create a new topic in the sensitive data policy in Qualtrics, it says: "Regex is either invalid or too long". Why is Qualtrics not accepting this Regex?

See More

DNS Lookup

DNS entries, such as A, NS, MX, and TXT records, are crucial for the functioning of the Internet. The A record maps a domain name to an IPv4 address, while the NS record specifies authoritative name servers for a domain. The MX record identifies the mail server responsible for receiving email messages for a domain. Additionally, the TXT record allows for the association of any text information with a domain name. These records play a vital role in ensuring proper communication and connectivity across the internet.

HostClassTTLTypeData
regex101.comIN300Aip: 78.47.220.195
regex101.comIN1800NStarget: dns1.registrar-servers.com
regex101.comIN1800NStarget: dns2.registrar-servers.com
regex101.comIN3601SOAmname: dns1.registrar-servers.comrname: hostmaster.registrar-servers.comserial: 1659192161refresh: 43200retry: 3600expire: 604800minimum-ttl: 3601
regex101.comIN1800MXtarget: eforward1.registrar-servers.compri: 10
regex101.comIN1800MXtarget: eforward5.registrar-servers.compri: 20
regex101.comIN1800MXtarget: eforward3.registrar-servers.compri: 10
regex101.comIN1800MXtarget: eforward2.registrar-servers.compri: 10
regex101.comIN1800MXtarget: eforward4.registrar-servers.compri: 15
regex101.comIN300TXTtxt: v=spf1 include:spf.efwd.registrar-servers.com -all
regex101.comIN300TXTtxt: google-site-verification=e3kdGikhQf2oBB_SquqmSxSnG-lMK1_3i2dGXNBZprA
regex101.comIN300AAAA

regex101.com Traffic Analysis

According to global rankings, regex101.com holds the position of #69602. It attracts an approximate daily audience of 38.63K visitors, leading to a total of 38740 pageviews. On a monthly basis, the website garners around 1158.82K visitors.

Daily Visitors38.63K
Monthly Visits1158.82K
Pages per Visit1.59
Visit Duration0:01:55
Bounce Rate79.94%
Want complete report?Full SEMrush Report >>
Daily Unique Visitors:
38627
Monthly Visits:
1158822
Pages per Visit:
1.59
Daily Pageviews:
38740
Avg. visit duration:
0:01:55
Bounce rate:
79.94%
Monthly Visits (SEMrush):
1161278

Traffic Sources

SourcesTraffic Share
Social:
0.73%
Paid Referrals:
1.93%
Mail:
0.02%
Search:
22.16%
Direct:
75.14%

Visitors by Country

CountryTraffic Share
United States:
12.26%
Russia:
9.27%
Germany:
6.06%
France:
5.60%
China:
5.59%

SSL Checker - SSL Certificate Verify

An SSL certificate is a digital certificate that ensures a secure encrypted connection between a web server and a user's browser. It provides authentication and encryption to keep data private and protected during transmission. regex101.com supports HTTPS, demonstrating their commitment to providing a secure browsing experience for users.

HTTP Headers

HTTP headers are additional segments of data exchanged between a client (e.g. a web browser) and a server during an HTTP request or response. They serve to provide instructions, metadata, or control parameters for the interaction between the client and server.

N/A.

Where is regex101.com hosted?

regex101.com is likely hosted in various data centers located across different regions worldwide. The current data center mentioned is just one of many where the website may be hosted.

Whois Information

WHOIS protocol used to get domain/IP info. Common for reg details, ownership of a domain/IP. Check regex101.com for reg/admin contact info, owner, org, email, phone, creation, and expiration dates.

Domain Updated Date: 2023-07-16
Domain Created Date: 2012-08-15
Domain Expiry Date: 2024-08-15
Domain Name: regex101.com
Registrar WHOIS Server: whois.namecheap.com
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.9854014545
Domain Registrar: NAMECHEAP INC
Domain Owner: Privacy service provided by Withheld for Privacy ehf

Domain name: regex101.com

Registry Domain ID: 1739018738_DOMAIN_COM-VRSN

Registrar WHOIS Server: whois.namecheap.com

Registrar URL: http

Updated Date: 2023-07-16T07

Creation Date: 2012-08-15T14

Registrar Registration Expiration Date: 2024-08-15T14

Registrar: NAMECHEAP INC

Registrar IANA ID: 1068

Registrar Abuse Contact Email: [email protected]

Registrar Abuse Contact Phone: +1.9854014545

Reseller: NAMECHEAP INC

Registry Registrant ID:

Registrant Organization: Privacy service provided by Withheld for Privacy ehf

Registrant Street: Kalkofnsvegur 2

Registrant City: Reykjavik

Registrant State/Province: Capital Region

Registrant Postal Code: 101

Registrant Country: IS

Registrant Phone: +354.4212434

Registrant Phone Ext:

Registrant Fax:

Registrant Fax Ext:

Registrant Email: [email protected]

Registry Admin ID:

Admin Organization: Privacy service provided by Withheld for Privacy ehf

Admin Street: Kalkofnsvegur 2

Admin City: Reykjavik

Admin State/Province: Capital Region

Admin Postal Code: 101

Admin Country: IS

Admin Phone: +354.4212434

Admin Phone Ext:

Admin Fax:

Admin Fax Ext:

Admin Email: [email protected]

Registry Tech ID:

Tech Organization: Privacy service provided by Withheld for Privacy ehf

Tech Street: Kalkofnsvegur 2

Tech City: Reykjavik

Tech State/Province: Capital Region

Tech Postal Code: 101

Tech Country: IS

Tech Phone: +354.4212434

Tech Phone Ext:

Tech Fax:

Tech Fax Ext:

Tech Email: [email protected]

Name Server: dns2.registrar-servers.com

URL of the ICANN WHOIS Data Problem Reporting System: http

For more information on Whois status codes, please visit https: //icann.org/epp

SEO Analysis

SEO analysis involves examining the performance of a website, including titles, descriptions, keywords, and website speed. It also includes identifying popular keywords and researching competitor websites to understand their strategies. The analysis aims to optimize the website's visibility and improve its ranking on search engines.

Title Tag:
regex101: build, test, and debug regex

Length: 38 characters

Title tags are usually best kept short, within 50-70 characters. It's important to note that search engines will typically read the entire title tag even if it exceeds 70 characters, but there is a chance they may cut it off or disregard it.

Meta Description:
Regular expression tester with syntax highlighting, explanation, cheat sheet for PHP/PCRE, Python, GO, JavaScript, Java, C /.NET, Rust.

Length: 135 characters

When crafting website descriptions, keep in mind that search engines only show the first 150-160 characters in search results. To ensure your entire description is visible, aim for a length of 25-160 characters. If your description is too long, it may get cut off. Conversely, if it's too short, search engines may add text from elsewhere on your page. Additionally, search engines may modify the description you provide to better match the user's search intent. It's best to strike a balance between brevity and relevance for optimal visibility.

Meta Keywords:
  • regex
  • regex tester
  • regular expression
  • debugger
  • pcre
  • php
  • golang
  • java
  • javascript
  • python
  • .net
  • c
  • rust

In the realm of search engine optimization, the meta keywords tag has become a relic of the past due to its potential for misuse, ultimately leading major search engines to disregard it in their ranking algorithms.

Keywords Cloud:
Term Count Density
character 11 7.64%
regex 8 5.56%
match 6 4.17%
a-z 6 4.17%
string 3 2.08%
range 3 2.08%
tokens 3 2.08%
information 2 1.39%
flavor 2 1.39%
abc 2 1.39%
php 2 1.39%
substitution 2 1.39%
explanation 2 1.39%
automatically 2 1.39%
sponsors 2 1.39%
reference 2 1.39%
save 2 1.39%
single 2 1.39%
pcre 2 1.39%
non-word 2 1.39%
javascript 2 1.39%
enclosed 2 1.39%
regular 2 1.39%
word 2 1.39%
boundary 2 1.39%
test 2 1.39%
community 2 1.39%

A crucial factor in search engine optimization is keyword density, which refers to the proportion of a particular keyword present in the text of a webpage. In order to achieve high rankings on search engine results pages, it is essential to maintain the appropriate keyword density for your primary keyword.

Headings:
<H1>
0
<H2>
9
<H3>
0
<H4>
0
<H5>
0
<H6>
0
<h> Regular Expressions 101 </h>
<h2> Quick Reference </h2>
<h2> Regular Expression No Match </h2>
<h2> Test String </h2>
<h2> Match Information </h2>
<h2> Tools </h2>
<h2> Save Share </h2>
<h2> Flavor </h2>
<h2> Function </h2>
<h2> Explanation </h2>

In SEO, the primary focus is placed on keywords within the content. The title of the page holds the highest importance, followed by heading tags such as h1, h2, and h3. The h1 heading should be the largest on the page, while the h2 heading should be slightly smaller, and the h3 heading even smaller. This hierarchical structure is crucial for optimizing search engine rankings.

Image Alt Attribute:
33 images found in your page, and 33 images are without "ALT" text.

What is the issue about?
The tag does not have an ALT attribute defined. As a general rule, search engines do not interpret the content of image files. The text provided in the attribute enables the site owner to provide relevant information to the search engine and to the end user. Alt text is helpful to end users if they have images disabled or if the image does not properly load. In addition, the Alt text is utilized by screen readers. Make sure that your Alt text is descriptive and accurately reflects what the image represents and supports the content on the page.

How to fix?
Use the <img alt> attribute to write descriptive content for the image: <img source='pic.gif' alt='Accurate and descriptive keyword text that represents the image.' />.

Website Speed Test (Desktop):
0.16 seconds

Website speed is a measurement of how fast the content on your page loads. Website speed is one of many factors involved in the discipline of search engine optimization (SEO), but it is not the only one. In a recent study, the average load time for a web page was 3.21s.

Top Organic Search Terms:
Term Search Volume Traffic Traffic (%)
regex101com 140 0 0%

CO-Hosted

CoHosted refers to a situation where multiple domain names (websites) are using the same IP address to point to their respective web servers. They could be owned by different individuals or organizations and may serve entirely different purposes.

regex101.com

People reviews about regex101.com

Very positive reviews

rating 5

Total reviews: 2
Average score: 5 stars

The total score is based on reviews found on the following sites
Scamadviser: 5/5 stars, 2 reviews

Add your review

rating 1 rating 2 rating 3 rating 4 rating 5

Very positive reviews

rating 5

Total reviews: 2
Average score: 5 stars

The total score is based on reviews found on the following sites
Scamadviser: 5/5 stars, 2 reviews


Back Top
Feedback