Basic30 Language Reference
appendC Function

Append a character to the end of a string.

Sub appendc(s() as String, ch as uByte)

Requirements

  1. This function requires the link time library "basic30.a".
  2. The flie <libs/basic30.bas> must be included in the Basic source to use this function.

Examples

#include <libs/basic30.bas>

Dim st(10) as String
st="Test"
appendc(st,"x")    ' st = "Testx"