strip_underscores
No overview available.
def strip_underscores(
text: string
) - > string
Removes leading and trailing underscores from a string. This is useful for normalizing identifiers or cleaning up internal naming conventions before display or processing.
Parameters
| Name | Type | Description |
|---|---|---|
| text | string | The input string to be processed for underscore removal |
Returns
| Type | Description |
|---|---|
string | The input string with all leading and trailing underscore characters removed |