DevToolBoxGRATIS
Blog

Regex Tester

Uji ekspresi reguler dengan pencocokan real-time, penyorotan, dan dukungan grup tangkapan. Gratis, tanpa pendaftaran.

//g

Tentang Ekspresi Reguler

Ekspresi reguler (regex) adalah pola yang kuat untuk mencocokkan, mencari, dan mengganti teks. Regex sangat penting untuk validasi input, pemrosesan teks, dan ekstraksi data. Alat ini menguji regex Anda secara real-time menggunakan mesin regex JavaScript.

Frequently Asked Questions

What is the difference between testing and matching?
Testing checks if a pattern matches a string at all (with the "g" flag, it finds all matches). Matching shows you where in the text the pattern was found and what was captured. Use tools like JSON Formatter to validate your data before testing patterns.
What do regex flags do?
The global flag (g) finds all matches; case-insensitive (i) ignores uppercase/lowercase; multiline (m) makes ^ and $ match line boundaries instead of string boundaries; dotall (s) makes . match newlines. Combine flags as needed.
How do I match email or phone numbers?
Email: /[^@]+@[^@]+\.[^@]+/. Phone (US): /\d3-\d3-\d4/. For real production use, check the validation best practices.
What's a capture group?
Parentheses in a regex create capture groups. For example, (\w+) captures one or more word characters. Groups are shown separately in the matches list, allowing you to extract specific parts of your match.
๐• Twitterin LinkedIn

๐Ÿ’ฌ User Feedback

Have suggestions or found a bug? Leave a message and we'll get back to you.
0/2000

Nilai alat ini

4.2 / 5 ยท 82 penilaian

Tetap Update

Dapatkan tips dev mingguan dan tool baru.

Tanpa spam. Berhenti kapan saja.

Enjoy these free tools?

โ˜•Buy Me a Coffee

Cara Penggunaan

  1. Enter your regex pattern in the pattern field
  2. Add flags (g for global, i for case-insensitive, m for multiline)
  3. Type or paste your test text
  4. View highlighted matches and match details in real-time

Kasus Penggunaan

  • Validating email addresses, URLs, or phone numbers
  • Extracting data from text (log parsing, web scraping)
  • Search and replace operations
  • Input validation in web forms

Pertanyaan Umum

What is a regular expression?
A regular expression (regex) is a pattern used to match, search, and manipulate text. It's supported in virtually every programming language.
How do I test my regex?
Enter your regex pattern in the pattern field, add test text below, and the tool will highlight all matches in real-time. Flags like 'g' (global) and 'i' (case-insensitive) are supported.
Is my regex data safe?
Yes. All regex processing happens in your browser using JavaScript's built-in RegExp engine. No data is sent anywhere.