====== 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|Col2]], [[col1|Col1()]], [[bcol1|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" ** **