Functions Index :: S :: StrLeft
Module:
Definition:
StrLeft(string s, int length)
Description:
A replacement of LeftStr standard Avisynth function. For Avisynth versions up to 2.55 offers the ability to handle twice as large strings than the standard function; for later versions it has the same functionality.
Arguments:
The arguments are those of the associated standard Avisynth function.
Examples:
s1 = StrLeft("\avisynth", 5)
s2 = StrLeft("\avisynth", 3)
# s1 == "avisy", s2 == "avi"