Home page
 
 Home 
 ASP 
 PHP 
 SQL 
 HTML 
 JavaScript 
 Search 
 Contact 
 
Search
or browse popular tags
Got questions?

We got answers.

Ask your question about PHP, ASP, Javascript, HTML, CSS, hosting and get professional help, free of charge.

Access Functions
Subscription

Sign up for the free email newsletter for new tips, tutorials and more. Enter your email address below, and then click the button.

Privacy Policy

RSS Twitter

Access: Trim Function

Print Bookmark and Share

In Access, the Trim function returns a copy of a string with leading and trailing spaces removed.

The syntax for the Trim function is:

Trim ( string )

The string argument can be any string expression. If string contains Null, Null is returned.

Example

Trim (" WebCheatSheet ")         returns "WebCheatSheet"
Trim ("tutorials ")                     returns "tutorials"
Trim (" articles")                      returns "articles"

VBA Code

Dim MyString, TrimString
MyString = " Access "
TrimString = Trim(MyString)

This example uses the Trim function to strip both types of spaces. Now the MyString variable would contain the value "Access".

SQL query

You can also use the Trim function in a query.

SELECT Trim([ItemDesired]) AS Expr1
FROM Orders


If you'd like to see how it works, enter SQL statement and press Execute
 

Free Contact Form

Need help with ASP, PHP, Javascript?

Let our experts help you.
 
 
ASPRunner.NET - code generator for ASP.NET
Web hosting (PHP,ASP,MySQL,SQL server,unlimited emails)



Tags: ACCESS FUNCTION TRIM LEADING TRAILING SPACE REMOVE

Add To: Add to dzone dzone | Digg this digg | Add to del.icio.us del.icio.us | Stumble it stumbleupon

  • Comments





Copyright © 2005-2009             www.WebCheatSheet.com All Rights Reserved.