Special Characters
Special Characters
Special characters include:
- # (hash)
- * (asterisk)
- , (comma)
- // (two back slashes)
- */ (asterisk back slash)
- /* (back slash asterisk)
Escape Special Characters
Use double quotes to escape special characters.
"#ab" // tags #ab"a , b" // tags a , b"a * b" // tags a * b"a // b" // tags a // b
Escaping “ and \ in escaped text
To use “ and \ contained in double quotes, use \ (forward slash) before the " or \.
"a \" b" // tags a " b"\\ab" // tags \ab
Example: Special Characters within a Dictionary
This example shows how special characters can be used within a Dictionary.
#wordlist tag:Special
"#sample" \\ tags #sample
"#group" \\ tags #group
"*condition*" \\ tags *condition*
"\"Special\"" \\ tags “special”
"\\marker" \\ tags \marker
Sample Text:
You can use #sample to add sample content for testing. Groups can be defined using #group. Use *condition* to add a "special" condition within an coded extract preceded by a \ marker (forward slash).
Result:
You can use #sample to add sample content for testing. Groups can be defined using #group. Use *condition* to add a "special" condition within an coded extract preceded by a \ marker (forward slash).