是否可以像 C 中那样省略字段 %*s
?
var pid int fmt.Fscanf(r, "%*s %d", &pid)
实际上,在 Go 中你无法做到这一点(至少在 Go 1.21.0 上)。
源代码表明:
%*s
):实际上,字符串的动词始终是 单个字符 (% s
、%v
、%q
、%X
或 %X
):实际上,字符串的动词始终是 单个字符
% s
、%v
、%q
、%X
或 %X
)Fscanf
方法 迭代参数(a
中的 Fscanf 数组(r io.Reader,格式字符串,a ...any)
)。因此,您必须在 a
Fscanf
a
中的 Fscanf 数组(r io.Reader,格式字符串,a ...any)
)。因此,您必须在 a
中定义一个参数,即使您不关心它的值
var pid int fmt.Fscanf(r, "%s %d", new(string), &pid)
其他替代方案io.ReadAll
):strings.Split
CB835C294C06824721603abd255bd78a
strings.Split
pidString := strings.Split(string(s), " ")[1] pid, err := strconv.Atoi(pidString) if err != nil { panic(err) // handle the error }
re := regexp.MustCompile(`[^\s]+ (?P<pid>\d+)`) // similar to "%s %d" matches := re.FindStringSubmatch(s) pidString := matches[re.SubexpIndex("pid")] pid, err := strconv.Atoi(pidString) if err != nil { panic(err) // handle the error }🎜可能还有其他方法,但这些应该足以说明。希望有帮助。🎜
以上是Fscanf 并像 C 中那样省略字段的详细内容。更多信息请关注PHP中文网其他相关文章!