Length

Description:
Return the number of characters in a string.

Format:
Length (string Source)

Parameters:

String

Source

Source string from which to copy characters.

Return Value:

Integer

Length

Number of characters in Source string.

Usage:
Use this function to get the number of characters in a string.

Example 1:
Find the number of characters in the strPhrases string.

String strPhrases
Integer intSize

strPhrases = 'Super Widgets, Long Widgets, Soft Widgets'
intSize = Length(strPhrases)

Hosted by www.Geocities.ws

1