# crypto.to_string

## 功能

返回当前输入文本。

## 语法

```bt
crypto(text).to_string()
```

## 参数

无。

## 返回值

| 类型 | 说明 |
| ------ | ------ |
| String | 当前输入文本。 |

## 代码示例

```bt
result = crypto('BT').to_string()

// 输出：BT
print result
```

## 注意事项

- 不执行摘要计算。
