Skip to content

Commit

Permalink
Fixed typo in tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
hylkevds committed Oct 19, 2023
1 parent eb6f85d commit 9d6db09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/sensorthingsapi/requestingData/STA-Filtering.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Function | Description & Example
--- | ---
`substringof(s1, s2)` <br/> bool | Returns true if s1 is a substring of s2 <br/> `Things?$filter=substringof('room', name)` matches `livingroom` and `room S01`
`endswith(s1, s2)` <br/> bool | Returns true if s1 ends with s2 <br/> `Things?$filter=endswith(name, 'room')` matches `livingroom` but not `room S01`
`startswith(s1, s2)` <br/> bool | Returns true if s1 starts with s2 <br/> `Things?$filter=endswith(name, 'room')` matches `room S01` but not `livingroom`
`startswith(s1, s2)` <br/> bool | Returns true if s1 starts with s2 <br/> `Things?$filter=startswith(name, 'room')` matches `room S01` but not `livingroom`
`substring(s1, i1)` <br/> string | Returns the substring of s1, starting at position i1 <br/> `substring(description,1) eq 'ensor Things'`
`substring(s1, i1, i2)` <br/> string | Returns the substring of s1, starting at position i1, with length i2 <br/> `substring(description,2,4) eq 'nsor'`
`length(s1)` <br/> int | Returns the length of string s1 <br/> `length(description) eq 13`
Expand Down

0 comments on commit 9d6db09

Please sign in to comment.