Lusky
Guest
use ansys 12.0.1, I have a text file with a set of strings in column:
string_numer_1
string_number_2
string_numer_3
.
.
.
strings are variable length and not known a priori (even more than 8 characters), I only know how many are. in my ansys script I need to import such strings, I would like the final result to be equivalent to doing:
*dim,stringhe,string,40,num_stringhe
strings(,1)='stringa_numero_1'
strings(,2)='stringa_number_2'
strings(,3)='stringa_numero_3'
.
.
.
string_numer_1
string_number_2
string_numer_3
.
.
.
strings are variable length and not known a priori (even more than 8 characters), I only know how many are. in my ansys script I need to import such strings, I would like the final result to be equivalent to doing:
*dim,stringhe,string,40,num_stringhe
strings(,1)='stringa_numero_1'
strings(,2)='stringa_number_2'
strings(,3)='stringa_numero_3'
.
.
.