Table of Contents

BCol2 function

Description

The BCol2 function is the binary version of Col2(). It will return the numeric value of the character position of the delimiter following the extracted data.

Syntax

position = BCol2()

See Also

Col2, Col1(), BCol1()

Example

* Parse a Repository ID

EntID = ANSI_UniCode( "SYSPROG*STPROCEXE**ANSI_UNICODE" )

AppID = EntID [1, "*",1] ; * Will contain "SYSPROG"
Type  = EntID [BCol2() + 1, "*",1] ; * Will contain "STPROCEXE"
Class = EntID [BCol2() + 1, "*",1] ; * Will contain ""
Name  = EntID [BCol2() + 1, "*",1] ; * Will contain "ANSI_UNICODE"
 
**
**