Differences
This shows you the differences between the selected revisions of the page.
2005-03-04 | 2005-03-04 | ||
ui_pref_transfer#other_options (martin) | typography (martin) | ||
Line 9: | Line 9: | ||
^ Pattern ^ Meaning ^ Example ^ | ^ Pattern ^ Meaning ^ Example ^ | ||
- | | * | Matches any number (including zero) of arbitrary characters. | ''*.doc; about*.html'' | | + | | ''*'' | Matches any number (including zero) of arbitrary characters. | ''*.doc; about*.html'' | |
- | | ? | Matches exactly one arbitrary character. | ''photo????.jpg'' | | + | | ''?'' | Matches exactly one arbitrary character. | ''photo????.jpg'' | |
- | | [abc] | Matches one character from the set. | ''index_[abc].html'' | | + | | ''[abc]'' | Matches one character from the set. | ''index_[abc].html'' | |
- | | [a-z] | Matches one character from the range. | ''index_[a-z].html'' | | + | | ''[a-z]'' | Matches one character from the range. | ''index_[a-z].html'' | |
All other characters are treated literally. | All other characters are treated literally. |