featurebyte.Feature.str.slice¶
slice( 
start: Optional[int]=None, 
stop: Optional[int]=None, 
step: Optional[int]=None
) -> FeatureDescription¶
Slices substring from each string element.
Parameters¶
- start: Optional[int]
Starting position for slice operation. - stop: Optional[int]
Ending position for slice operation. - step: Optional[int]
Step size for slice operation (only size 1 is supported) 
Returns¶
- Feature
A new Feature object. 
Raises¶
- ValueError
When the step size is neither None nor 1.