18 lines
268 B
Plaintext
Raw Normal View History

include::../description.adoc[]
== Noncompliant Code Example
----
str.split(/.*?x?/); // Noncompliant, this will behave just like "x?"
/^.*?$/.test(str); // Noncompliant, replace with ".*"
----
== Compliant Solution
----
str.split(/.*?x/);
/^.*$/.test(str);
----