我有一个txt文件,在这个文件中我只需要int值,如何得到这个值?
txt 文件 - 利润 = 10 在 ->04-06-2021 20:21:59
我正在使用此代码获取此文件..!
func Profit() string {
TargetClosePrice := 110
ontickerPrice := 100
Time := time.Now()
totalProfit := TargetClosePrice - ontickerPrice
str := strconv.Itoa(totalProfit)
value := `Profit = ` + str + ` at the Time of ->` + Time.Format("01-02-2006 15:04:05") + "\n"
data, err := os.OpenFile("Profit.txt", os.O_APPEND, 0644)
if err != nil {
log.Fatal("whoops", err)
}
io.Copy(data, strings.NewReader(value))
return str
}
但现在我只需要10从txt文件..?我怎么能得到?