Issue #497: turn on single line mode for FHIRPath matches()
This commit is contained in:
parent
d57fd9fa1d
commit
783ad9b850
|
@ -4711,7 +4711,7 @@ public class FHIRPathEngine {
|
||||||
if (Utilities.noString(st)) {
|
if (Utilities.noString(st)) {
|
||||||
result.add(new BooleanType(false).noExtensions());
|
result.add(new BooleanType(false).noExtensions());
|
||||||
} else {
|
} else {
|
||||||
boolean ok = st.matches(sw);
|
boolean ok = st.matches("(?s)" + sw);
|
||||||
result.add(new BooleanType(ok).noExtensions());
|
result.add(new BooleanType(ok).noExtensions());
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue