This is a pre-release version (2.5.0.dev0+git20251130.2de293a). Go to latest (2.4.4)
{ } Raw JSON

bundles / numpy 2.5.0.dev0+git20251130.2de293a / numpy / strings / slice

function

numpy.strings:slice

source: build-install/usr/lib/python3.14/site-packages/numpy/_core/strings.py :1729

Signature

def   slice ( a start = None stop = <no value> step = None / )

Summary

Slice the strings in a by slices specified by start, stop, step. Like in the regular Python slice object, if only start is specified then it is interpreted as the stop.

Parameters

a : array-like, with ``StringDType``, ``bytes_``, or ``str_`` dtype

Input array

start : None, an integer or an array of integers

The start of the slice, broadcasted to a's shape

stop : None, an integer or an array of integers

The end of the slice, broadcasted to a's shape

step : None, an integer or an array of integers

The step for the slice, broadcasted to a's shape

Returns

out : ndarray

Output array of StringDType, bytes_ or str_ dtype, depending on input type

Examples

import numpy as np
a = np.array(['hello', 'world'])
np.strings.slice(a, 2)
np.strings.slice(a, 2, None)
np.strings.slice(a, 1, 5, 2)
One can specify different start/stop/step for different array entries:
np.strings.slice(a, np.array([1, 2]), np.array([4, 5]))
Negative slices have the same meaning as in regular Python:
b = np.array(['hello world', 'γεια σου κόσμε', '你好世界', '👋 🌍'],
             dtype=np.dtypes.StringDType())
np.strings.slice(b, -2)
np.strings.slice(b, -2, None)
np.strings.slice(b, [3, -10, 2, -3], [-1, -2, -1, 3])
np.strings.slice(b, None, None, -1)

Aliases

  • numpy.strings.slice