IBM BPM, V8.0.1, All platforms > Programming IBM BPM > Business rule management programming > Examples > Additional Query Examples

Query business rule group by properties with multiple wildcards (‘_’ and ‘%’)

This is an example of a query of business rule group by properties with multiple wildcards (‘_’ and ‘%’).

brgList =
BusinessRuleManager.getBRGsBySingleProperty("region", QueryOperator.LIKE, "__uth%Region", 		0, 0);

// Returns BRG1 and BRG4

Additional Query Examples