Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Remove extracts data from a long string faster and more efficiently than does Extract, if doing sequential access through the array.

See also

ExtractRemove statement

Example

Code Block
/* This code segment demonstrates the fastest way to sequentially access each element of a dynamic array. */
dyn_array = "123": @FM: "678": @FM: "ABC"
position = 1
flag  = ""
Loop
    BRemove current_element From dyn_array At position Setting flag
While flag
Repeat