System单元
Trunc(1234.5678);{1234}
Trunc(-1234.5678);{-1234}
Round(1234.5678);{1235}
Round(-1234.5678);{-1235}
{Int 和 Trunc 都是向 0 方向舍入, 貌似结果一直, 但它们返回的类型不一样}
{Trunc 返回的是 Int64; Int 返回的是 Extended 类型}
Int(1234.5678);{1234}
Int(-1234.5678);{-1234}
Frac(1234.5678);{0.5678}
math单元
function Ceil(const X: Extended):Integer;上取整
function Floor(const X: Extended): Integer;下取整
---------------------------字符处理--------------------------------
StringReplace('abcdefA','a','中国',[rfRePlaceALL,rfIgnoreCase]) {'中国bcdef中国'}
rfRePlaceALL:全部替换
rfIgnoreCase:忽大小写