- To: slug@xxxxxxxxxxx
- Subject: [SLUG] Re: Contcatenating text in gimps script-fu
- From: Angus Lees <gusl@xxxxxxxxxxxxxxx>
- Date: Wed May 16 16:06:08 2001
- User-agent: Mutt/1.2.5i
\begin{Peter Rundle}
> In need to join three text strings in the gimps
> script-fu and can't figure out what the function
> is.
>
> The variable "theText" holds some text passed in by
> the user and I want to pre and post-pend some fixed
> text to it.
>
> I.E "pre" + theText + ".ext"
>
> Whats the correct syntax?
a quick grep for likely names gives:
(string-append "pre" theText ".ext")
--
- Gus