$array.delete

This function removes a entry with the given value from the array
Syntax
    $array.delete{array}{value}
DocumentationThis function removes a entry with the given value from the array:

    Paramter:
      array - the array
      value - the value you will delete from the array
    Returns:
      none
    Throws:
      none
Examples
    $setCurrent{my_array}{$array.new{}}
    $array.add{$getCurrent{my_array}}{SITEFORUM}
    $array.add{$getCurrent{my_array}}{EUROPE}
    $array.add{$getCurrent{my_array}}{AG}

    Array:$getCurrent{my_array}
    Contains: $array.contains{$getCurrent{my_array}}{EUROPE}

    Returns:
      Array:3
      Contains:1

    $array.delete{$getCurrent{my_array}}{EUROPE}
    Array:$getCurrent{my_array}
    Contains: $array.contains{$getCurrent{my_array}}{EUROPE}

    Returns:
      Array:2
      Contains:0
GroupSpecial
Minimum required transaction-mode:NONE
Required scripting permission of the developerPERMISSION_FL_BASIC
Minimum parameters2
Maximum parameters 2