get_string_list¶
- sofia_redux.scan.utilities.utils.get_string_list(value, delimiter=',', default=None)[source]¶
Return a list of strings from the given single string.
- Parameters:
- valuestr
The string to convert into a list.
- delimiterstr, optional
The string delimiter used to separate one element from the next.
- defaultlist, optional
The result to return if the value passed in is
None
.
- Returns:
- list (str)