基本信息
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
是字元或二進制數據表達式。c haracter_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)