OxyGen Code Generator Overview  
Table of Contents
Previous Topic: Appendix B - Source Code Component Packages
Next Topic: Appendix D – Entity Name Assignment Rules
This appendix describes the wildcard matching rules.
Wildcard matching uses the following special characters “*”, “?” along with an alphanumeric string. “*”matches any string while “?”matches any character.
For instance, given the set {“a123”, “a1234”, “a1235”}, and the following wildcard patters: {“a*”, “a123?”} the matching results will be {“a123”, “a1234”, “a1235”} and {“a1234”, “a1235”} respectively.
OxyGen Code Generator Overview  
Table of Contents
Previous Topic: Appendix B - Source Code Component Packages
Next Topic: Appendix D – Entity Name Assignment Rules