इस टूल में कोई समस्या है?
«रेगेक्स टेस्टर (जावास्क्रिप्ट) ऑनलाइन» के बारे में
यह टूल नमूना टेक्स्ट के विरुद्ध नियमित अभिव्यक्ति पैटर्न का परीक्षण और दृश्यांकन करता है। अपना पैटर्न दर्ज करें, एक नमूना पेस्ट करें, और टूल हर मैच को हाइलाइट करता है।
तत्काल प्रतिक्रिया के बिना Regex डिबगिंग कुख्यात रूप से दर्दनाक है।
टूल JavaScript, Python, Perl, और PCRE regex फ्लेवर का समर्थन करता है।
इस टूल का उपयोग कैसे करें
How to test a JavaScript regular expression
Enter the pattern
"Regular expression" takes a JavaScript (ECMAScript) regex source — without the surrounding `/.../`. Up to 2,000 characters. Execution is capped server-side for safety against catastrophic backtracking.
Pick flags
"Flags" accepts any combo of `g i m s u y` (default `g`). `g` = global, `i` = case-insensitive, `m` = multiline anchors, `s` = dotAll, `u` = unicode, `y` = sticky. Up to 12 chars total.
Provide test input
"Test string" is the text to match against. Up to 400,000 characters — plenty for most logs and source files.
Press Run
Result returns the list of matches with capture groups, the full text marked with match positions, and metadata like total match count and time. Catastrophic patterns are aborted with a clear error rather than a server-side hang.