qc_get_config_string qc_set_config_string navigation bar

Table of Contents

qc_get_config_strings

Retrieves all the values in a configuration string.

Syntax

values = qc_get_config_strings(string) % retrieves all the values stored in a configuration string
    

Description

Retrieves all the values stored in a configuration string, as a cell array of strings. This function is typically used to create a dropdown list of the values entered in order to make it easier to copy values from one configuration to another. Duplicate entries are removed from the cell array.

Parameters

string

A string containing the current configuration-dependent values. The output values are extracted from this string.

Outputs

values

A cell array of the configuration-dependent values extracted from the string. Each value in the cell array is a string.

Examples

uris = qc_get_config_strings(string);
    

See Also

 

navigation bar