Home > lang > begins 
 en fr de es it nl pl pt pt_BR mk sq ca cs tr ar fa id vi ko ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Search  Administration  
Documentation  
Warning! This page is not translated.  See english version 
BEGINS
Result = String [ NOT ] BEGINS Pattern

Returns TRUE if the String string begins with the Pattern string.

If NOT is specified, then the test is inverted.

This operator is case sensitive.

Example

Print "Gambas" Begins "Gam"

True

Print "Gambas" Begins "Vis"

False

Print "Gambas" Not Begins "Vis"

True

See also

String Operators