1

I frequently find myself needing to create a list of characters, e.g.

xopts:["p", "q", "r", "s", "t", "u", "v", "x", "y", "z"]; 

and was looking for a way to produce these lists, without having to wrap every character in "'s.

Rax Adaam
  • 790
  • 3
  • 11

1 Answers1

1

Recalled charlist immediately after posting.

E.g., the list in the post could be created by:

xopts:charlist("pqrstuvxyz"); 
Rax Adaam
  • 790
  • 3
  • 11