Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2023.0.0 - English


strstr

Tail of a string starting from the 1st occurrrence of a given fragment

Syntax

Tail = strstr(Strings, StartingFragment)

Arguments

Strings, StartingFragment, Tail

Matrices of strings, of identical dimensions. StartingFragments can be a single string. It is then used for all Strings components.

Description

Tail = strstr(Strings, StartingFragment) builds and returns a matrix of strings such that, for each element Strings(i), Tail(i) is the part of Strings(i) starting from the first occurrence of startingFragment(i), up to the end of Strings(i).

If StartingFragment(i) is not found in Strings(i), Tail(i) is set to "".

Examples

strstr('This is a simple string','simple')
strstr('This is a simple string','sample')
strstr(['This is a simple string','in scilab'],'is')
strstr(['This is a sample string','in scilab'],['a','scilab'])

See also

  • strrchr — find the last occurrence of a character in a string
  • strchr — find the first occurrence of a character in a string
Report an issue
<< strspn Strings strsubst >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon Mar 27 11:52:45 GMT 2023