> For the complete documentation index, see [llms.txt](https://docs.cheddar.vihan.org/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cheddar.vihan.org/docs/standard-library/string/tail.md).

# Tail

| type   | returns  |
| ------ | -------- |
| method | `string` |

## Arguments

| name | type | description                      |
| ---- | ---- | -------------------------------- |
| size | int  | the amount of characters to grab |

## Explanation

Returns a substring of the given size, starting at the string's last character. Roughly equivilent to `#slice(-size)`

## Examples

```swift
"Hello!".tail(1) == "!"
// Goat emoji is a surrogate of two bytes
"🐑🐐".tail(2) == "🐐"
```
