$array.set

This Function set a new array values after removing the existing values
Syntax
    $array.set{array}{value_1}{value_2}...{value_n}
DocumentationThis Function set a new array values after removing the existing values:

    Paramter:
      array - the array value - the new values of the array
    Returns:
      none
    Throws:
      none
Examples
    $array.add{$getCurrent{my_array}}{SITEFORUM}
    $array.add{$getCurrent{my_array}}{AG}

      $for{$set{a}{0}}
        {$less{$get{a}}{$toInteger{$getCurrent{my_array}}}}{$incLocal{a}}
        {
        $getCurrent{my_array[$get{a}]}
        }
    Returns:SITEFORUMAG
    $array.set{$getCurrent{my_array}}{SITEFORUM}{EUROPE}{AG}{2003}

      $for{$set{a}{0}}
        {$less{$get{a}}{$toInteger{$getCurrent{my_array}}}}{$incLocal{a}}
        {
        $getCurrent{my_array[$get{a}]}
        }
    Returns:SITEFORUMEUROPEAG2003
GroupSpecial
Minimum required transaction-mode:NONE
Required scripting permission of the developerPERMISSION_FL_BASIC
Minimum parameters1
Maximum parameters <unlimited>