码迷,mamicode.com
首页 > 其他好文 > 详细

delphi 常用字符函数

时间:2014-09-23 23:22:14      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:blog   io   os   ar   数据   div   art   on   c   

二、去空格函数
1、LTRIM() 把字符串头部的空格去掉。

2、RTRIM() 把字符串尾部的空格去掉。

三、取子串函数
1、leftstr()
LEFTstr (<str>, <integer_expression>)
返回str 左起 integer_expression 个字符。

2、RIGHTstr()
RIGHTstr (<str>, <integer_expression>)
返回str 右起 integer_expression 个字符。

3、SUBSTRING()
SUBSTRING (<expression>, <starting_ position>, length)
返回从字符串左边第starting_ position 个字符起length个字符的部分。

四、字符串比较函数
1、CHARINDEX()
返回字符串中某个指定的子串出现的开始位置。
CHARINDEX (<’substring_expression’>, <expression>)
其中substring _expression 是所要查找的字符表达式,expression 可为字符串也可为列名表达式。如果没有发现子串,则返回0 值。
此函数不能用于TEXT 和IMAGE 数据类型。

  

delphi 常用字符函数

标签:blog   io   os   ar   数据   div   art   on   c   

原文地址:http://www.cnblogs.com/cnby/p/3989402.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!