onlyou13

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2018年2月23日

摘要: function GetLeft(sText, sepStr: string): string; var p: Integer; begin p := Pos(sepStr, sText); if p = 0 then Exit(''); Result := Copy(sText, 1, p - 1); end; function GetRight(sText, sepStr... 阅读全文
posted @ 2018-02-23 10:38 onlyou13 阅读(232) 评论(0) 推荐(0) 编辑