pe_array_from_string |
Creates an array object from its string representation
PE_ARRAY pe_array_from_string (const char *buffer);
buffer | The string representation of the array object |
This function creates an array object from its string representation. Array objects are used with PE_HTMETHOD and PE_ADHJCS objects.
On success, an array object; otherwise, a null pointer
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);