All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.javascript.rules.javascript.S5856.html Maven / Gradle / Ivy

There is a newer version: 10.17.0.28100
Show newest version

Why is this an issue?

Regular expressions have their own syntax that is understood by regular expression engines. Those engines will throw an exception at runtime if they are given a regular expression that does not conform to that syntax.

To avoid syntax errors, special characters should be escaped with backslashes when they are intended to be matched literally and references to capturing groups should use the correctly spelled name or number of the group.

To match a literal string, rather than a regular expression, either all special characters should be escaped or methods that don’t use regular expressions should be used.

Noncompliant code example

new RegExp("([");
str.match("([");

Compliant solution

new RegExp("\\(\\[");
str.match("\\(\\[");
str.replace("([", "{");




© 2015 - 2024 Weber Informatics LLC | Privacy Policy