feed: correct the case sensitivity example in the full table search post

The post claimed `smith` finds `Smithson`, which only holds for a case
insensitive match. The comparison is case sensitive, so the search term has
to match the case as stored: `Smith` finds `Smithson`, and `smith` finds
`Goldsmith`, but `smith` will not find `Smithson`.
This commit is contained in:
dc
2026-09-16 23:42:45 +00:00
parent 959a9ffab4
commit 7561bb0c39
+1 -1
View File
@@ -17,7 +17,7 @@ Finding a value in a large table usually means writing a query first: guess whic
The search box sits in the Viewer toolbar, next to a **Numeric** checkbox:
- **Text search** matches part of a value, so `smith` finds `Smithson` and `Goldsmith`. The comparison is case sensitive, using the SAS® `CONTAINS` operator.
- **Text search** matches part of a value, so `Smith` finds `Smithson` and `smith` finds `Goldsmith`. The comparison is case sensitive, using the SAS® `CONTAINS` operator, so `smith` will not find `Smithson`.
- **Numeric search** (tick the box) matches the number exactly against every numeric column in the table.
Whichever you use, the results are ordinary rows in the Viewer, with the rest of the screen behaving exactly as it does for a normal view.