Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

concatenate string table entries


1 reply to this topic

dalkema

dalkema
  • Full Members
  • 9 posts

Posted 09 April 2002 - 22:06

Is there a way to concatenate two or more string table entries into another entry?  Something that gives you:
STRING3 = STRING1 + STRING2

I have a string that I have to update frequently that is shared between many of the string table values.  I just thought it would be nice to have it one place.

thanks,
David

Taco Bell

Taco Bell

    IS6 Expert

  • Moderators
  • 1,281 posts

Posted 10 April 2002 - 02:05

As far as I know there is not a way to do this directly in the string table.  Best bet is to create a global variable in your script with that value.  For example:
#define GlobalString     @StringTableEntry1 + @StringTableEntry2
user posted image