Table of Contents

BEGINS

Logical operator for checking if a string begins with a given subtring or pattern

Implemented by: Gambas

With variations:

Also written as:

Usage

result = "BASIC" Begins "BAS"        ' True
 
PRINT "BASIC" Begins "Bas"      ' Prints "False"; it is case-sensitive
 
result = "BASIC" Not Begins "Jav"      ' True

Variations

Examples

Comments

Similar keywords

In other languages...

References