Difference between revisions of "MC-Basic:SIZE"

From SoftMC-Wiki
Jump to: navigation, search
(Created page with '{{MC-Basic |SHORT FORM= |SYNTAX= Size(''<string>'') |AVAILABILITY= Avilable since version 4.5.10 |DESCRIPTION= This function returns the number of bytes taken by the input st…')
 
m (1 revision)
(No difference)

Revision as of 16:10, 13 December 2010

This function returns the number of bytes taken by the input string.In ASCII-8 strings SIZE()’svalueis equal to LEN()’s value, whereas in UTF-8 string SIZE()’s value might be remarkably bigger than LEN()’s value.

Syntax

Size(<string>)

Availability

Avilable since version 4.5.10

Type

<string>: String
<return value>: Long

Range

<string>: string

<return value>: 0 to MaxLong

Scope

Configuration, Task or Terminal

Limitations

Read-Only

Examples

?SIZE (CHR$(0xC4))           ‘ The letter Ä

1.000000000000000e+00

?SIZE (UTF$(0xC4))

2.000000000000000e+00

See Also