c_discount.go 211 B

12345678910
  1. package clean
  2. // 投标折扣系数
  3. func CleanBiddiscount(biddiscount string) string {
  4. if biddiscount == "无" {
  5. return ""
  6. }
  7. biddiscount = fieldReg1.ReplaceAllString(biddiscount, "")
  8. return biddiscount
  9. }