How to convert a list of symbols to strings and then split by a delimiter
Say I have a list of symbols like so… q) list `hello_world.q `hello_world_2.q I’d like to split this so I end up with this list of strings… q) new_list “hello_world” “hello_world_2” how is that done? I can do this using something like… string1: “`” vs string list[0] string1: “.” vs string1[1] But not sure how … Read more