Removes leading and trailing characters (whitespaces by default) from each string element.
Remove leading and trailing "M" characters from the Title column:
>>> feature = catalog.get_feature("ProductGroupLookup")
>>> feature_group = fb.FeatureGroup([feature])
>>> feature_group["ProductGroupStrip"] = feature.str.strip("M")