21 lines
231 B
Markdown
21 lines
231 B
Markdown
# Right
|
||
|
||
Gets a substring of a specified length from the end of a string.
|
||
|
||
```
|
||
string Right(
|
||
uint count // length
|
||
)
|
||
|
||
```
|
||
|
||
Parameters
|
||
|
||
count
|
||
|
||
[in] Substring length.
|
||
|
||
Return Value
|
||
|
||
Resulted substring.
|