MCPcopy Create free account
hub / github.com/ColdGrub1384/Pyto / find

Method find

site-packages/numpy/core/defchararray.py:2245–2255  ·  view source on GitHub ↗

For each element, return the lowest index in the string where substring `sub` is found. See also -------- char.find

(self, sub, start=0, end=None)

Source from the content-addressed store, hash-verified

2243 return asarray(expandtabs(self, tabsize))
2244
2245 def find(self, sub, start=0, end=None):
2246 """
2247 For each element, return the lowest index in the string where
2248 substring `sub` is found.
2249
2250 See also
2251 --------
2252 char.find
2253
2254 """
2255 return find(self, sub, start, end)
2256
2257 def index(self, sub, start=0, end=None):
2258 """

Callers 13

einsumFunction · 0.45
extras.pyFile · 0.45
fromtextfileFunction · 0.45
_logMethod · 0.45
parse_structureFunction · 0.45
parse_loop_headerFunction · 0.45
msvc_runtime_versionFunction · 0.45
gnu_version_matchMethod · 0.45
build_err_msgFunction · 0.45
rundocsFunction · 0.45
loadTestsFromModuleMethod · 0.45
analyzelineFunction · 0.45

Calls 1

findFunction · 0.70

Tested by

no test coverage detected