check_contains
No overview available.
def check_contains(
target: string,
substring: string
) - > boolean
Checks if a specific substring exists within a target string and returns a boolean result.
Parameters
| Name | Type | Description |
|---|---|---|
| target | string | The primary string to be searched within. |
| substring | string | The specific sequence of characters to look for inside the target string. |
Returns
| Type | Description |
|---|---|
boolean | True if the substring is found within the target string, False otherwise. |