  REDIM

  【1.0 build 26 追加】
   REDIM <var> TO <size>

   Type: statement

   Redimensions a dynamic array to a new size. The contents of the array
   will be preserved. If the array becomes smaller then the elements at the
   end of the array will be cleared. The dynamic array has to be declared
   previously using DECLARE or LOCAL. Example:

   REDIM a$ TO 20

