Description
The PSCRemoveStringsPartEx procedure removes a name part (NamePart is True) or a value part (NamePart is False) of combined strings ('Name=Value') in all items of the Strings list. Example: Separator = '=', NamePart = True Before: Strings[0] = 'AppPath=C:\PSOFT' After: Strings[0] = 'C:\PSOFT' Example: Separator = '.', NamePart = False Before: Strings[5] = 'TObject.Create' After: Strings[5] = 'TObject'