Page 1 of 1

(append) and/or (string) including spaces (wish-list)

Posted: Thu Jul 30, 2009 1:03 pm
by ale870
Hello,

I think it could be useful adding an option (or creating a new function) to append some strings by automatically adding spaces. For example:

(append "my" "name" "is" "ale") --> "my name is ale"

Second request:
A function to perform more sophisticated upper-case/lower-case activities:
1) only capitals.
2) Only the first letter after a specific characteer (e.g.: ".").

Thank you.

Posted: Thu Jul 30, 2009 2:01 pm
by HPW
What about:

Code: Select all

(join '("my" "name" "is" "ale")" ")

Posted: Thu Jul 30, 2009 2:28 pm
by Lutz

Posted: Thu Jul 30, 2009 3:15 pm
by ale870
@Lutz: is it a new function? I didn't notice it before!
@HPW: Thank you, but I found that solution. I was thinking that a proper function could be a "commodity". Thank you!