VB6Parse / Library / String / ltrim_dollar

VB6 Library Reference

LTrim$ Function

Returns a String containing a copy of a specified string with leading spaces removed.

Syntax

LTrim$(string)

Parameters

Return Value

Returns a String with all leading (left-side) spaces removed. If the string contains only spaces, returns an empty string. Trailing spaces and spaces within the string are preserved.

Remarks

The LTrim$ function removes leading space characters (ASCII 32) from a string. It's commonly used to clean up user input, process fixed-width data, or normalize strings for comparison.

Only the space character (ASCII 32) is removed. Other whitespace characters like tabs, newlines, or non-breaking spaces are not affected by LTrim$.

LTrim$ is the string-specific version that always returns a String. The LTrim function returns a Variant.

Typical Uses

Example 1: Cleaning User Input

Dim userInput As String
userInput = "  John Doe"
cleaned = LTrim$(userInput)  ' "John Doe"

Example 2: Processing Fixed-Width Data

Dim record As String
record = "     12345"
id = LTrim$(record)  ' "12345"

Example 3: Normalizing Comparison

If LTrim$(text1) = LTrim$(text2) Then
Debug.Print "Match (ignoring leading spaces)"
End If

Example 4: Parsing Indented Text

Dim line As String
line = "    Code line"
code = LTrim$(line)  ' "Code line"

Common Usage Patterns

Validating Non-Empty Input

Dim name As String
name = txtName.Text
If LTrim$(name) = "" Then
MsgBox "Name cannot be empty or spaces only"
End If

Processing CSV Fields

Dim fields() As String
fields = Split(csvLine, ",")
For i = 0 To UBound(fields)
fields(i) = LTrim$(fields(i))
Next i

Reading Indented Configuration

Dim configLine As String
configLine = "    setting=value"
setting = LTrim$(configLine)  ' "setting=value"

Extracting List Items

Dim listItem As String
listItem = "  - Item text"
text = LTrim$(listItem)  ' "- Item text"

Database Field Cleanup

Dim dbValue As String
dbValue = rs.Fields("name").Value
cleanValue = LTrim$(dbValue)

Removing Formatting Spaces

Dim formatted As String
formatted = "     $1,234.56"
amount = LTrim$(formatted)  ' "$1,234.56"

Processing Text File Lines

Dim line As String
Open "data.txt" For Input As #1
Do Until EOF(1)
Line Input #1, line
line = LTrim$(line)
If Left$(line, 1) <> "#" Then
processLine line
End If
Loop
Close #1

Normalizing String Arrays

Dim items() As String
items = Split(data, vbCrLf)
For i = 0 To UBound(items)
items(i) = LTrim$(items(i))
Next i

Removing Padding from Fixed Fields

Dim fixedRecord As String
fixedRecord = "          Customer Name     "
name = LTrim$(fixedRecord)  ' "Customer Name     "

Combining with RTrim$ for Full Trim

Dim text As String
text = "  Data  "
' Remove both leading and trailing spaces
cleaned = LTrim$(RTrim$(text))  ' "Data"
' Or use Trim$ directly
cleaned = Trim$(text)  ' "Data"

Best Practices

  1. Use Trim$ instead of LTrim$ when you want to remove both leading and trailing spaces
  2. Always validate input after trimming to check for empty strings
  3. Be aware that only space characters (ASCII 32) are removed, not tabs or other whitespace
  4. Use LTrim$ for left-aligned fixed-width fields
  5. Combine with validation to prevent injection attacks in SQL or scripts
  6. Remember that LTrim$ preserves internal and trailing spaces
  7. Consider using Replace for removing other whitespace characters
  8. Cache the result if using trimmed value multiple times
  9. Use LTrim$ instead of LTrim when you need explicit String type
  10. Test with edge cases: empty strings, all spaces, no leading spaces

Performance Considerations

Whitespace Handling

Character ASCII Removed by LTrim$
Space 32 Yes (if leading)
Tab 9 No
Newline 10 No
Carriage Return 13 No
Non-breaking Space 160 No
Vertical Tab 11 No
Form Feed 12 No

Common Pitfalls

Limitations

← Back to String | View all functions