Try this:
Tags:*;* | (mind the final space character)
Background 1 (from Help):
Code: Select all
The | has priority over ; so using | you can filter items containing the ; character:
Desktop|; | , = List all items on Desktop containing ";" or ","
If you state only one pattern and this pattern contains a ; then you have to add another dummy | (mind the surrounding spaces) to avoid that the ; is treated as separator:
Desktop|; | = List all items on Desktop containing ";"
Desktop|;a | = List all items on Desktop containing ";a"
Desktop|*; * | = List all items on Desktop containing "; "
Background 2:
For the "tags:" selector (or whatever you use to point to the "Tags:" column) there is no auto-surrounding by asterisks. That's why
Tags:; | does not work here (unless the tag is just a semicolon). The pattern
; | does work in all other columns, and without any further selector it will match all files having a semicolon in the name.