pe_array_from_string

Creates an array object from its string representation

Usage syntax

PE_ARRAY pe_array_from_string (const char *buffer);

Parameters
buffer The string representation of the array object
Description

This function creates an array object from its string representation. Array objects are used with PE_HTMETHOD and PE_ADHJCS objects.

Returns

On success, an array object; otherwise, a null pointer

Examples

PE_ARRAY arr1;

char *arr_metadata = “ARRAY[\"Coefficients\",6,3.2,0.0,492228.0,0.0,-3.2,3177545.0]”;

arr1 = pe_array_from_string(arr_metadata);