rspec/rules/S5869/java/rule.adoc

29 lines
590 B
Plaintext
Raw Normal View History

include::../description.adoc[]
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
----
str.matches("[0-99]") // Noncompliant, this won't actually match strings with two digits
str.matches("[0-9.-_]") // Noncompliant, .-_ is a range that already contains 0-9 (as well as various other characters such as capital letters)
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
----
str.matches("[0-9]{1,2}")
str.matches("[0-9.\\-_]")
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
include::../highlighting.adoc[]
endif::env-github,rspecator-view[]