printx

The printx method formats a string.

 

Syntax

System.String printx(System.Int32 cFormat ,  cSource );

 

Parameters

cFormat

format string

cSource

source string

 

Return Value

Returns the formated string.

 

Remarks

This method uses this convention:

A Copy next alpha character, skipping any others.

9 Copy next numeric character, skipping any others.

? Copy next character.

X Copy next alphanumeric character, skipping any others.

* Copy the rest of the source string from this point on.

\ Escape character.

> Upper case translation until further notice.

 

Member of util.

 

Example