このメソッドは、文字列の右側から一定数の文字を返します。
right(str,count)
/*Main program*/ a = "Hello World" say right(a,5)
上記のプログラムを実行すると、次の結果が得られます。
World