pom
pom

Reputation: 340

How to concatenate a string to a list of strings

I have a list of string

b:"0"^-9$string til 500

How do I concatenate a string (say "abc" to each element of b) so that I would have a list of below:

"abc000000000"
"abc000000001"
"abc000000002"
"abc000000003"
"abc000000004"
"abc000000005"
.
.
"abc000000499"

Upvotes: 0

Views: 214

Answers (1)

Rahul
Rahul

Reputation: 3969

You could use each-right adverb like below:

  q) "abc",/:b

Upvotes: 3

Related Questions