fortify / fcli

fcli is a command-line utility for interacting with various Fortify products
https://fortify.github.io/fcli/
Other
29 stars 16 forks source link

DOC: Document proper usage of "matches" operator #382

Closed psmf22 closed 11 months ago

psmf22 commented 12 months ago

The documentation should include a warning that this operator does not gracefully handle null values. The following should be described as a workaround:

To include results with null values: stringValue == null || stringValue matches 'value1|value2'

To exclude results with null values: stringValue != null && stringValue matches 'value1|value2'