2021-07-20 11:22:26 +02:00
|
|
|
include::../description.adoc[]
|
2021-04-28 18:08:03 +02:00
|
|
|
|
2021-04-28 16:49:39 +02:00
|
|
|
== Noncompliant Code Example
|
|
|
|
|
|
|
|
----
|
|
|
|
Pattern.compile("a|b|c"); // Noncompliant
|
|
|
|
----
|
|
|
|
|
2021-04-28 18:08:03 +02:00
|
|
|
|
2021-04-28 16:49:39 +02:00
|
|
|
== Compliant Solution
|
|
|
|
|
|
|
|
----
|
|
|
|
Pattern.compile("[abc]");
|
|
|
|
// or
|
|
|
|
Pattern.compile("[a-c]");
|
|
|
|
----
|
2021-04-28 18:08:03 +02:00
|
|
|
|