Functions Index :: S :: StrRight

[<< up one level]

Module:

string :: core

Definition:

StrRight(string s, int length)

Description:

A replacement of RightStr 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 = StrRight("\avisynth", 5)

s2 = StrRight("\avisynth", 3)

# s1 == "synth", s2 == "nth"

 

[<< top]