10.3.2 STR2ARR


next up previous contents
Next: 10.3.3 ARR2STR Up: 10.3 Miscellaneous Previous: 10.3.1 PRSTR

10.3.2 STR2ARR

Given a string, STR2ARR will separate the items into an array using a `,' as the delimiter by default. Some examples are:
IDL> arr = str2arr('a,b,c,d,e,f,ggg,hh')
 
IDL> arr = str2arr(!path, delim=':')


ydac@mssly1.mssl.ucl.ac.uk