String

| HOME | BACK |

Overview

String class is used to store a character string.  No limitation in the length of a string.  

Member data

None.  

However Noobeed adds an additional character, a one byte of zero value, at the end of every string.  This helps Noobeed know the length of a string.  

Operator

String class has one operator, which is addition operation, "+".  

Example:

->a = "My name is "

->b = "NOOBEED"

->c = a + b

->c

ans = My name is NOOBEED

 

Construction function

{String} ret  =  STRING([{int} argm1])

argm1 = no of character      (default = 0)

Example:

->a = String()

->a = String(5)

this is a string with a zero length

this is a string of 5 blank characters

 

Lfunction

No Lfunction provided.

 

Class function

 ASC  CAT COUNT COUNTFROM DEL
EXTRACT EXTRACTCSV FIND FINDFROM  
 FINDLAST  LEFT LEN LOWER LTRIM
 NO_WORD  REPLACE REVERSE RIGHT RTRIM
 SUB SUBREPLACE UPPER   VAL VECTOR

 


| HOME | BACK |