|
Contents | Previous | Next | Subchapters |
| Syntax |
i = find(text, lower, upper) |
[i, j] = find(text, lower, upper) | |
| See Also | strreplace , find text , string equality and string ordering |
list = {"TEST.A9", "TEST.B8", "TEST.C7", "TEST.D3"}
find(list, "A1", "B5")
O-Matrix will respond
{
[ 1 , 6 ]
[ 2 , 6 ]
[ 4 , 7 ]
}
because the sixth column of the first row ("A")
and the sixth column of the second row ("B") of list are within the
boundaries of the first elements of upper
and lower,
and the seventh element of the fourth row ("3")
is within the boundaries of the second elements of
upper and lower.