LTrim()

生活百科 2023-01-25 21:22生活百科www.aizhengw.cn

LTrim()

是字元或二进制数据表达式。character_expression 可以是常量、变数或列。character_expression 必须是可以隐性转换为 varchar 的数据类型。否则,使用 CAST 显式转换 character_expression。

基本介绍

  • 中文名LTrim()
  • 外文名character_expression 
  • 属性字元或二进制数据表达式
  • 包括常量、变数或列

基本信息

LTrim()函式 去掉字元串截去首尾连续空白 .
表达式 String LTrim('源字元串'),
'源字元串',输入类型为字元,需要处理的源字元串。
asp 实例:
<%
strTest = " This is a test!"
response.write LTrim(strTest)
%>
返回结果: This is a test!
.net 实例:
logic.aspx
<%@ Page language="c#" AutoEventWireup="false" Inherits="NoahWeb.Engine" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>NoahWeb示範</title>
</head>
<body>
<!-- #BeginLibraryItem "/Library/lout.lbi" -->逻辑层输出位点<!-- #EndLibraryItem -->
</body>
</html>
逻辑层示例
此示例需要存在档案"logic.aspx"和当前名称空间下具有"viewmsg"字元资源。
<Action name="logic.demo" NextAction="">
<Out Area="/Library/lout.lbi">
<SetVar Name="message" Value="'[' ADD LTrim(' a b c d ') ADD ']'" />
<Echo ContentLinkId="viewmsg" />
</Out>
</Action>
示例输出
[a b c d]

LTRIM

删除起始空格后返回字元表达式。
语法 LTRIM ( character_expression )
参数 character_expression
是字元或二进制数据表达式。character_expression 可以是常量、变数或列。character_expression 必须是可以隐性转换为 varchar 的数据类型。否则,使用 CAST 显式转换 character_expression
varchar
注释 兼容级别可能影响返回值。有关兼容级别的更多信息,请参见 sp_dbcmptlevel。
示例 下例使用 LTRIM 字元删除字元变数中的起始空格。
DECLARE @string_to_trim varchar(60) SET @string_to_trim = ' Five spaces are at the beginning of this string.' SELECT 'Here is the string without the leading spaces: ' + LTRIM(@string_to_trim)GO 下面是结果集
Here is the string without the leading spaces: Five spaces are at the beginning of this string. (1 row(s) affected)

Copyright@2015-2025 www.aizhengw.cn 癌症网版板所有