Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/js/src/jit-test/tests/basic/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  regexp-removed-dot-star.js

  Sprache: JAVA
 


// Test that removal of leading or trailing .* from RegExp test() calls
// does not affect lastMatch or other RegExpStatics info.

function first(input) {
    var re = /.*b(cd)/;
    for (var i = 0; i < 10; i++)
 re.test(input);
}

first("1234\nabcdefg\n1234");
assertEq(RegExp.lastMatch, "abcd");
assertEq(RegExp.$1"cd");
assertEq(RegExp.input, "1234\nabcdefg\n1234");
assertEq(RegExp.leftContext, "1234\n");
assertEq(RegExp.rightContext, "efg\n1234");
assertEq(RegExp.lastParen, "cd");


// Test that removal of leading or trailing .* from RegExp test() calls
// does not affect lastMatch or other RegExpStatics info.

function second(input) {
    var re = /bcd.*/;
    for (var i = 0; i < 10; i++)
 re.test(input);
}

second("1234\nabcdefg\n1234");
assertEq(RegExp.lastMatch, "bcdefg");
assertEq(RegExp.$1"");
assertEq(RegExp.input, "1234\nabcdefg\n1234");
assertEq(RegExp.leftContext, "1234\na");
assertEq(RegExp.rightContext, "\n1234");
assertEq(RegExp.lastParen, "");

function third(input) {
    var re = /.*bcd.*/;
    for (var i = 0; i < 10; i++)
 re.test(input);
}

third("1234\nabcdefg\n1234");
assertEq(RegExp.lastMatch, "abcdefg");
assertEq(RegExp.$1"");
assertEq(RegExp.input, "1234\nabcdefg\n1234");
assertEq(RegExp.leftContext, "1234\n");
assertEq(RegExp.rightContext, "\n1234");
assertEq(RegExp.lastParen, "");

Messung V0.5 in Prozent
C=94 H=90 G=91

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet am  2026-06-06) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.