Skip to content

Commit

Permalink
fix: issue #173 - find_last example (#174)
Browse files Browse the repository at this point in the history
<!-- ps-id: 64cc976e-b8d9-4688-9d1f-40f55b8cb05f -->
  • Loading branch information
cawalch authored Dec 9, 2024
1 parent 2c9c113 commit 428452e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jep-014-string-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Contrary to similar functions found in most popular programming languages, the `
| `"subject string"` | `` find_last(@, 'string', `8`) `` | `8`
| `"subject string"` | `` find_last(@, 'string', `8`, `9`) `` | `null`
| `"subject string"` | `` find_last(@, 'string', `9`) `` | `null`
| `"subject string"` | `` find_last(@, 's') `` | `0`
| `"subject string"` | `` find_last(@, 's') `` | `8`
| `"subject string"` | `` find_last(@, 's', `1`) `` | `8`
| `"subject string"` | `` find_last(@, 's', `0`, `7`) `` | `0`
| `"subject string"` | `` find_last(@, '') `` | `null`
Expand Down

0 comments on commit 428452e

Please sign in to comment.