Matches a topic name against a topic filter.
Supports MQTT wildcards:
+
#
The topic name (from PUBLISH)
The topic filter (from SUBSCRIBE)
true if the topic matches the filter
topicMatches("sport/tennis/player1", "sport/tennis/+") // truetopicMatches("sport/tennis/player1", "sport/#") // truetopicMatches("sport/tennis", "sport/tennis/#") // truetopicMatches("sport", "sport/#") // true Copy
topicMatches("sport/tennis/player1", "sport/tennis/+") // truetopicMatches("sport/tennis/player1", "sport/#") // truetopicMatches("sport/tennis", "sport/tennis/#") // truetopicMatches("sport", "sport/#") // true
MQTT 5.0 ยง4.7.2
Matches a topic name against a topic filter.
Supports MQTT wildcards:
+matches exactly one level#matches zero or more levels (must be last)