For the complete documentation index, see llms.txt. This page is also available as Markdown.

StringBuilderLeft

No description available.

Method Signature

StringBuilderLeft(stringBuilder=[stringBuilder], count=[integer])

Arguments

Argument
Type
Required
Description
Default

stringBuilder

stringBuilder

true

count

integer

true

Examples

Get left characters with left()

Returns the leftmost characters from a StringBuilder.

sb = sb{'The quick brown fox'};
result = sb.left( 9 );
writeOutput( result );

Result: The quick

Headless usage

Result: Box

Last updated

Was this helpful?