本文介绍了在bash shell脚本如何将字符串转换为数字的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
嘿,我想一个字符串转换为数字
Hey I would like to convert a string to a number
x="0.80"
#I would like to convert x to 0.80 to compare like such:
if[ $x -gt 0.70 ]; then
echo $x >> you_made_it.txt
fi
现在我得到的错误整数前pression预料的,因为我想比较的字符串。
Right now I get the error integer expression expected because I am trying to compare a string.
感谢
推荐答案
由于某些原因,该解决方案吸引我:
For some reason, this solution appeals to me:
if ! echo "$x $y -p" | dc | grep > /dev/null ^-; then
echo "$x > $y"
else
echo "$x < $y"
fi
您需要确保$ x和$ y是有效的(如:
只包含数字和零个或一个'。'),并
根据您的DC有多老,你可能需要
指定类似'10K'得到它
认非整数值。
You'll need to be sure that $x and $y are valid (egcontain only numbers and zero or one '.') and,depending on how old your dc is, you may need tospecify something like '10k' to get it torecognize non-integer values.
这篇关于在bash shell脚本如何将字符串转换为数字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!