AppCtrlScript

MAY Computer

Help

REMOVEVALS

Applies to  

AppCtrlScript (Module: wmACScr1.dll)

Group  

Primary

See also  

DIM, REMOVEVAL, SETVAL

Removes all variables starting with the specified prefix.

 

Syntax

REMOVE[VALS] <VariablePrefix>
REMOVE[VARS] <VariablePrefix>

Part

Description

<VariablePrefix> All variables with a name beginning with <VariablePrefix> are deleted (=delete of multiple variables).

 

 

Sample

SUB MAIN
  SETVAL Test, "MyPart1;MyPart2;MyPart3"
  STRSPLIT Splitted_, %SCR.Test%, ";"
  STRCOLLECT Combined, Splitted_, %CRLF%
  REMOVEVARS Splitted_
END
SUB