startsWith

Определите, начинаются ли строки с шаблона

Описание

пример

TF = startsWith(str,pat) возвращает 1 TRUE) если str запускается с заданного шаблона и возвращает 0 ложь) в противном случае.

пример

TF = startsWith(str,pat,'IgnoreCase',true) игнорирует регистр при определении если str запускается с pat.

Примечание

Только Stateflow® графики то использование MATLAB® как поддержка языка действия startsWith оператор.

Примеры

развернуть все

h = "Hello, world!"
pat1 = "H"
pat2 = "h"
x = startsWith(h, pat1)
x2 = startsWith(h, pat2)

Stateflow chart that uses the startswith operator in a state.

Results from stateflow chart that uses the startswith operator in a state.

h = "Hello, world!"
pat1 = "H"
pat2 = "h"
x = startsWith(h, pat1, 'IgnoreCase', true)
x2 = startsWith(h, pat2, 'IgnoreCase', true)

Stateflow chart that uses the startswith operator in a state.

Results from stateflow chart that uses the startswith operator in a state.

Ограничения

Введенный в R2021b
Для просмотра документации необходимо авторизоваться на сайте