gpt4 book ai didi

狂欢 : extracting part of a string

转载 作者:行者123 更新时间:2023-11-29 08:41:27 28 4
gpt4 key购买 nike

假设我有字符串“Memory Used: 19.54M”我如何从中提取 19.54?19.54 会经常变化,所以我需要将它存储在一个变量中,并与下一次迭代的值进行比较。

我想我需要 grep 和 regex 的某种组合,但我从来没有真正理解过 regex..

最佳答案

您可能想要提取它而不是删除它。您可以使用参数扩展来提取值:

var="Memory Used: 19.54M"
var=${var#*: } # Remove everything up to a colon and space
var=${var%M} # Remove the M at the end

请注意,bash 只能比较整数,它不支持浮点运算。

关于狂欢 : extracting part of a string,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12671406/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com