20 lines
317 B
Plaintext
Raw Permalink Normal View History

== Why is this an issue?
include::../description.adoc[]
=== Noncompliant code example
2022-02-04 17:28:24 +01:00
[source,javascript]
----
"cc̈d̈d".replace(/[c̈d̈]/g, "X"); // result is "XXXXXX" and not expected "cXXd"
----
=== Compliant solution
2022-02-04 17:28:24 +01:00
[source,javascript]
----
"cc̈d̈d".replace(/c̈|d̈/g, "X"); // result is "cXXd"
----