以给定字符串中给定位置的实值的形式返回原始字节值。
string_byte_at(str, index);
Real
newbyte = string_byte_at("Hello World", 5);
这将设置 newbyte 为 "Hello World" 第六个字母的原始字节值。