LazyColumn.str.isnumeric
isnumeric
Checks if all characters in each string are numeric.
This is similar to isdigit() but includes other number-like Unicode characters. For simplicity in this implementation, we're making it equivalent to isdigit().
Returns:
| Name | Type | Description |
|---|---|---|
LazyColumn |
LazyColumn
|
A new LazyColumn of boolean values indicating whether each string contains only numeric characters. |
Examples: