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