pyufunc.str_strip#

pyufunc.str_strip(string)#

Convert all consecutive whitespace characters to ‘ ‘ (half-width whitespace), then return a copy of the string with leading and trailing whitespace removed.

Parameters:

string (str) – string

Returns:

string

Return type:

str

Example

>>> from pyufunc import str_strip
>>> str_strip(" hoge   ")
'hoge'
>>> str_strip(" ho    ge   ")
'ho ge'
>>> str_strip("  ho    g e")
'ho g e'