wordcount
Return the number of words.
def wordcount(
value: string
) - > int
Return the number of words.
Parameters
| Name | Type | Description |
|---|---|---|
| value | string | The string content to be processed for word counting |
Returns
| Type | Description |
|---|---|
int | The total count of whitespace-separated words found within the input string |