CLIPM$

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Core Language > BuiltIn Functions > String functions >

CLIPM$

 

Description

 

Delete characters from a string.

Returns the contents of StringExpression with lCount characters removed starting at position lStart.

 

Syntax

 

s = CLIPM$(StringExpression, lStart, lCount)

 

Returns

 

String

 

Parameters

 

Name

Type

Optional

Meaning

StringExpression

String

No

String from which delete chars

lStart

Numeric

No

Position from where to start to remove

lCount

Numeric

No

Number of bytes to remove

 

Remarks

 

Restrictions

 

See also

 

String Handling,

 

Examples