mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-03-09 14:31:17 +00:00
Merge pull request #498 from pieter-edelman-nictiz/497
Issue #497: turn on single line mode for FHIRPath matches()
This commit is contained in:
commit
2e640accce
@ -4711,7 +4711,7 @@ public class FHIRPathEngine {
|
||||
if (Utilities.noString(st)) {
|
||||
result.add(new BooleanType(false).noExtensions());
|
||||
} else {
|
||||
boolean ok = st.matches(sw);
|
||||
boolean ok = st.matches("(?s)" + sw);
|
||||
result.add(new BooleanType(ok).noExtensions());
|
||||
}
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user