This flow shows how MQTT wildcard subscriptions use '+' to match one topic level and '#' to match multiple levels, deciding which messages to deliver.
Execution Sample
IOT Protocols
Subscribe to: sensors/+/temperature
Publish to: sensors/livingroom/temperature
Publish to: sensors/kitchen/humidity
Subscribe with '+' wildcard to receive temperature from any room, then publish messages to different topics to see which match.
Process Table
Step
Subscription Topic Filter
Published Topic
Match Condition
Match Result
Message Delivered
1
sensors/+/temperature
sensors/livingroom/temperature
'+' matches 'livingroom' level
Match
Yes
2
sensors/+/temperature
sensors/kitchen/humidity
'temperature' != 'humidity' at last level
No Match
No
3
sensors/#
sensors/kitchen/humidity
'#' matches all remaining levels
Match
Yes
4
sensors/#
devices/kitchen/humidity
First level 'sensors' != 'devices'
No Match
No
5
home/+/temperature
home/livingroom/temperature
'+' matches 'livingroom'
Match
Yes
6
home/+/temperature
home/livingroom/kitchen/temperature
'+' matches only one level, extra levels present
No Match
No
💡 All published topics checked against subscription filters; messages delivered only if match conditions met.
Status Tracker
Variable
Start
After 1
After 2
After 3
After 4
After 5
After 6
Final
Subscription Topic Filter
sensors/+/temperature
sensors/+/temperature
sensors/+/temperature
sensors/#
sensors/#
home/+/temperature
home/+/temperature
home/+/temperature
Published Topic
sensors/livingroom/temperature
sensors/kitchen/humidity
sensors/kitchen/humidity
devices/kitchen/humidity
devices/kitchen/humidity
home/livingroom/temperature
home/livingroom/kitchen/temperature
home/livingroom/kitchen/temperature
Match Result
Match
No Match
Match
No Match
No Match
Match
No Match
No Match
Message Delivered
Yes
No
Yes
No
No
Yes
No
No
Key Moments - 3 Insights
Why does '+' only match one level and not multiple levels?
The '+' wildcard matches exactly one topic level. For example, in row 6 of the execution table, 'home/+/temperature' does not match 'home/livingroom/kitchen/temperature' because '+' matches only 'livingroom', not multiple levels like 'livingroom/kitchen'.
How does '#' differ from '+' in matching topics?
The '#' wildcard matches zero or more levels at the end of the topic. For example, in row 3, 'sensors/#' matches 'sensors/kitchen/humidity' because '#' covers all remaining levels after 'sensors'.
Can '#' be used in the middle of a topic filter?
No, '#' must be the last character in the topic filter. It matches all remaining levels from that point. This is why in the examples, '#' appears only at the end.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution table, at step 2, why is the message not delivered?
ABecause '+' does not match 'kitchen'
BBecause the last level 'humidity' does not match 'temperature'
CBecause '#' wildcard is missing
DBecause the published topic has too many levels
💡 Hint
Check the 'Match Result' and 'Match Condition' columns at step 2 in the execution table.
At which step does the '#' wildcard allow matching multiple topic levels?
AStep 3
BStep 1
CStep 5
DStep 6
💡 Hint
Look for '#' in the 'Subscription Topic Filter' column and see where it matches multiple levels.
If the subscription was 'home/#' instead of 'home/+/temperature', which published topic would match at step 6?
Asensors/livingroom/temperature
Bhome/livingroom/temperature
Chome/livingroom/kitchen/temperature
Ddevices/kitchen/humidity
💡 Hint
Refer to how '#' matches multiple levels in the variable_tracker and execution_table.
Concept Snapshot
MQTT wildcard subscriptions:
- '+' matches exactly one topic level
- '#' matches zero or more levels at the end
- '+' and '#' help subscribe to multiple topics easily
- '#' must be last in filter
- Messages delivered only if topic matches filter
Full Transcript
This lesson shows how MQTT wildcard subscriptions work using '+' and '#'. The '+' wildcard matches exactly one level in the topic path, like a single folder in a file path. The '#' wildcard matches all remaining levels, like a catch-all folder. We traced examples where subscriptions with '+' matched topics with one varying level, and '#' matched multiple levels. We saw why some messages are delivered and others are not, based on these rules. This helps understand how to subscribe to many topics efficiently in IoT messaging.