Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2023.1.0 - Français


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 Chaînes de caractères 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 May 22 12:39:43 CEST 2023