postal.js currently supports wildcard topic bindings by providing two special characters that can be used in a binding. The current implementation works as follows:
- Topics are period-delimited string values. Periods are not required, but if they are included, the section of alpha-numeric text between periods is referred to as a word or topic segment.
- Current wildcard characters:
- * - an asterisk acts as a wildcard for any length of the topic.
- "Home*" would match "Home.Sweet.Home" and "Homeless.Programmer"
- * - an asterisk acts as a wildcard for any length of the topic.
- "Home.*" would match "Home.Sweet.Home, but not "Homeless.Programmer"
