How do I extract a substring in InnoSetup?

When writing Pascal script code for InnoSetup, how do I extract a substring?

+3


source to share


1 answer


The InnoSetup function Copy

can do this.

function Copy(S: String; Index, Count: Integer): String;

      



Pascal strings are indexed starting at 1.

+5


source







All Articles