You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
showResultWithDiagram('📊 RegExp 1 matches a subset of RegExp 2. Every string matched by RegExp 1 is also matched by RegExp 2, but not vice versa.','subset',examples,hasValidationIssue);
515
506
}elseif(!diffABEmpty&&diffBAEmpty){
516
507
// B is subset of A: no strings in B that aren't in A
showResultWithDiagram('📊 RegExp 1 matches a superset of RegExp 2. Every string matched by RegExp 2 is also matched by RegExp 1, but not vice versa.','superset',examples,hasValidationIssue);
521
512
}else{
522
513
// Neither subset nor equivalent: both differences are non-empty
// Add warning banner if there's a validation issue
587
579
if(hasValidationIssue){
588
-
html+='<div class="mismatch-warning">Something went wrong. The presented example strings don\'t match the regex as claimed. Please create bug ticket on GitHub.</div>';
580
+
html+='<div class="mismatch-warning">Something went wrong. The presented example strings don\'t match the regex as claimed. Please file an issue on GitHub with your input regex.</div>';
0 commit comments