- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据https://blog.golang.org/strings在我的测试中,看起来当我们 range
一个字符串时,我们得到的字符是 rune
类型,但是如果我们通过 str[index]
获取它code> ,它们将是 byte
类型,为什么呢?
最佳答案
对于第一级,为什么是因为那是 how the language is defined 。 String type 告诉我们:
A string value is a (possibly empty) sequence of bytes. The number of bytes is called the length of the string and is never negative. Strings are immutable: once created, it is impossible to change the contents of a string.
和:
A string's bytes can be accessed by integer indices 0 through len(s)-1.
同时, range
是一个可以插入到 for
statement 中的子句,规范说:
The expression on the right in the "range" clause is called the range expression, which may be ... [a] string ...
和:
- For a string value, the "range" clause iterates over the Unicode code points in the string starting at byte index 0. On successive iterations, the index value will be the index of the first byte of successive UTF-8-encoded code points in the string, and the second value, of type
rune
, will be the value of the corresponding code point. If the iteration encounters an invalid UTF-8 sequence, the second value will be0xFFFD
, the Unicode replacement character, and the next iteration will advance a single byte in the string.
如果你想知道为什么语言是这样定义的,你真的必须问定义者本身。但是,请注意,如果 for
仅在字节范围内,则您需要构建自己的更高级的循环来在 rune 范围内。鉴于 for ... range
确实可以处理 rune ,如果您想要处理字符串 s
中的字节,您可以编写:
for i := 0; i < len(s); i++ {
...
}
并轻松访问循环内的s[i]
。您还可以写:
for i, b := range []byte(s) {
}
并在循环内访问索引 i
和字节 b
。 (从字符串到 []byte
的转换,或反之亦然,可能需要一个副本,因为 []byte
可以修改。但在这种情况下, range
不会修改它,编译器可以优化掉该副本。请参阅 icza's comment below 或 this answer 到 golang: []byte(string) vs []byte(*string) 。)所以你并没有失去任何能力,只是可能失去了 smidgen 的简洁性。
关于go - rune 与字符串范围内的字节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58635507/
package main var lettersLower = []rune("abcdefghijklmnopqrstuvwxyz") var lettersUpper = []rune("ABCD
我正在维护一些 Java 代码,我目前正在将它们转换为 C#。 Java 代码是这样做的: sendString(somedata + '\000'); 在 C# 中,我正在尝试做同样的事情: sen
我正在尝试使用 utf8 十六进制代码生成连续字符。例如第一部分,我称之为“基本”代码:259第二部分,我称之为“结束”代码:1(或,2,或 A,或 F,等等) 这些以字符串的形式出现。一旦我附加了结
我有一个字符串 MyString我想在这个数据中附加如下内容: MYString ("1", "a"), ("1", "b") //END result 我的代码是这样的: query :=
这是我的代码段: var converter = map[rune]rune {//some data} sample := "⌘こんにちは" var tmp string for _, runeVa
根据https://blog.golang.org/strings在我的测试中,看起来当我们 range 一个字符串时,我们得到的字符是 rune 类型,但是如果我们通过 str[index] 获取它
我有一个非常非常大的文本文件(比内存大得多)。我想做的是使用类似于: for record in myFile: process_record(); 添加的技巧是我的记录由空行分隔(中间有各种东西)
我想连接一个字符串文字和一个字 rune 字。由于语法不正确,"abc"'d' "efg" 会导致编译器错误: x.c:4:24: error: expected ',' or ';' before
我想连接一个字符串文字和一个字 rune 字。由于语法不正确,"abc"'d' "efg" 会导致编译器错误: x.c:4:24: error: expected ',' or ';' before
我在网上看到一个使用 golang 中的 rune() 函数的函数,但我很难找到它是什么。我正在阅读教程并且对文档没有经验,所以很难找到我要找的东西。 具体来说,我想看看为什么会失败...... fm
我正在查看 string.Map 函数,它必须采用返回 rune 的映射函数。我想通过调用来消除解析为 false 的 rune :unicode.IsPrint() func Map(映射 func
我在按字符排序字符串时遇到问题(要检查两个字符串是否是字谜,我想对它们都进行排序,并检查是否相等)。 我可以像这样得到字符串 s 的 []rune 表示: runes := make([]rune,
什么是rune在围棋? 我一直在谷歌搜索,但 Golang 只说一行: rune是 int32 的别名. 但是整数怎么会像交换案例一样到处使用呢? 下面是一个函数swapcase。什么是<=和 - ?
我正在使用具有此约束规则的泛型: type LineParser[T []rune | string] struct { } 我有那个结构的通用方法: func (it *LineParser[T])
我有一个包含波兰语字符的 csv,但是当我在 SAS 中导入时,某些波兰语字符被替换为“?”或任何其他随机变量,我该如何处理。我有一个所有可能的波兰语字符的列表,我不介意它被它的英语对应字符取代 最佳
我正在创建一个时尚的文本应用程序,但在某些地方出现错误(“字 rune 字中的字符太多”)。我只写了一个字母,但是当我粘贴它时,它会转换成许多这样的字母:“\uD83C\uDD89”,原始字母是“🆉
有点像 const X: char = '0x10FFFC'; 最佳答案 是的,使用\u{..}: const X: char = '\u{10FFFC}'; Playground 这种情况下的一个技
我有一个名为“ roケールストリングのキャッシュ最适化-v3-20160202_1047.pdf”的pdf文件。 使用Google标记管理器从下载URL获取文件名时,我得到的值为“%E4%BE%9B
程序目的: rune 密码 最终编辑: 我现在(感谢 非常有用的 由 Extremely 提供的答案 了不起的人 )完成了我一直在从事的项目;并且 - 对于 future 的读者,我还提供了完整的代码
如何在Scala中为垂直制表符('\v',ASCII 11)编写字 rune 字? '\v'不起作用。 (无效的转义字符)'\11'应该是,但是... scala> '\11'.toInt res13
我是一名优秀的程序员,十分优秀!