Summary
Finds whether one string is included within another.
Description
Determines whether one string can be found within another string, returning true or false
Route
POST /string/includes
Roles
admin
Parameters
DetailsExampleSchema
Name | Type | Required | Description |
---|---|---|---|
str | string | yes | The string to search |
searchString | string | yes | The string to be searched for within this string |
position | number | no | The position in the string at which to begin searching for searchString (defaults to 0) |
Return
DetailsExampleSchema
Name | Type | Description |
---|---|---|
result | boolean | True if the query was found, false otherwise |