Merge pull request #498 from pieter-edelman-nictiz/497

Issue #497: turn on single line mode for FHIRPath matches()
This commit is contained in:
Grahame Grieve 2021-05-31 08:51:26 +10:00 committed by GitHub
commit 2e640accce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 {