Description |
Returns the right part of string. The number of chars is defined by num. If more characters should be seperated than exist, the whole string is returned.
Example
RightStr("Hans Huber",5) -> "Huber"
RightStr("Hans Huber",100) -> "Hans Huber"
RightStr("Hans Huber,1) -> "r"
|