# doc-cache created by Octave 10.2.0
# name: cache
# type: cell
# rows: 3
# columns: 2
# name: <cell-element>
# type: sq_string
# elements: 1
# length: 8
endsWith


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 885
 -- Function: OUT = endsWith (STR, PATTERN)
 -- Function: OUT = endsWith (..., 'IgnoreCase', IGNORECASE)

     Test if strings end with a pattern.

     Tests whether the given strings end with the given pattern(s).

     STR (char, cellstr, or string) is a list of strings to compare
     against PATTERN.

     PATTERN (char, cellstr, or string) is a list of patterns to match.
     These are literal plain string patterns, not regex patterns.  If
     more than one pattern is supplied, the return value is true if the
     string matched any of them.

     Returns a logical array of the same size as the string array
     represented by STR.

     This definition of ‘endsWith’ is supplied by Tablicious, and is a
     compatibility shim for versions of Octave which do not provide one.
     It is only loaded in Octaves older than 7.0.0.

     See also: startsWith, contains.


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 35
Test if strings end with a pattern.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 10
startsWith


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 893
 -- Function: OUT = startsWith (STR, PATTERN)
 -- Function: OUT = startsWith (..., 'IgnoreCase', IGNORECASE)

     Test if strings start with a pattern.

     Tests whether the given strings start with the given pattern(s).

     STR (char, cellstr, or string) is a list of strings to compare
     against PATTERN.

     PATTERN (char, cellstr, or string) is a list of patterns to match.
     These are literal plain string patterns, not regex patterns.  If
     more than one pattern is supplied, the return value is true if the
     string matched any of them.

     Returns a logical array of the same size as the string array
     represented by STR.

     This definition of ‘startsWith’ is supplied by Tablicious, and is a
     compatibility shim for versions of Octave which do not provide one.
     It is only loaded in Octaves older than 7.0.0.

     See also: endsWith, contains.


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 37
Test if strings start with a pattern.





