vb6parse 1.0.1

vb6parse is a library for parsing and analyzing VB6 code, from projects, to controls, to modules, and forms.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="VB6Parse Library Reference - ltrim - String">
    <title>ltrim - String - VB6Parse Library Reference</title>
    <link rel="stylesheet" href="../../../assets/css/style.css">
    <link rel="stylesheet" href="../../../assets/css/docs-style.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/github-dark.min.css">
    <script src="../../../assets/js/theme-switcher.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/vbnet.min.js"></script>
    <script>hljs.highlightAll();</script>
</head>
<body>
    <header class="docs-header">
        <div class="container">
            <h1><a href="../../../index.html">VB6Parse</a> / <a href="../../../library/index.html">Library</a> / <a href="../../../library/functions/string/index.html">String</a> / ltrim</h1>
            <p class="tagline">VB6 Library Reference</p>
        </div>
    </header>

    <nav class="docs-nav">
        <div class="container">
            <a href="../../../index.html">Home</a>
            <a href="../../../library/index.html">Library Reference</a>
            <a href="../../../documentation.html">Documentation</a>
            <a href="https://docs.rs/vb6parse" target="_blank">API Docs</a>
            <a href="https://github.com/scriptandcompile/vb6parse" target="_blank">GitHub</a>
            <button id="theme-toggle" class="theme-toggle" aria-label="Toggle theme">
                <span class="theme-icon">🌙</span>
            </button>
        </div>
    </nav>

    <main class="container">
        
        <article class="library-item">
            <h1 id="ltrim-function">LTrim Function</h1>
<p>Returns a String containing a copy of a specified string with leading spaces removed.</p>
<h2 id="syntax">Syntax</h2>
<pre><code class="language-vbnet">LTrim(string)</code></pre>
<h2 id="parameters">Parameters</h2>
<ul>
<li><code>string</code> (Required): String expression from which leading spaces are to be removed</li>
<li>Can be any valid string expression</li>
<li>If string is Null, returns Null</li>
<li>Empty string returns empty string</li>
</ul>
<h2 id="return-value">Return Value</h2>
<p>Returns a String (or Variant):
- Copy of string with leading spaces removed
- Removes only spaces (ASCII 32) from the left
- Does not remove tabs, newlines, or other whitespace characters
- Returns Null if input is Null
- Returns empty string if input is empty or all spaces
- Trailing spaces are preserved
- Internal spaces are preserved</p>
<h2 id="remarks">Remarks</h2>
<p>The <code>LTrim</code> function removes leading spaces:
- Removes only space characters (ASCII 32) from the left side
- Does not remove tabs (Chr(9)), line feeds (Chr(10)), or carriage returns (Chr(13))
- Does not remove non-breaking spaces or other Unicode whitespace
- Trailing spaces are not affected
- Internal spaces between words are preserved
- Often used to clean up user input
- Commonly paired with <code>RTrim</code> or used with Trim
- Null input returns Null (propagates Null)
- Empty string input returns empty string
- String of only spaces returns empty string
- Does not modify the original string (returns new string)
- Can be used with Variant variables
- Common in data validation and formatting
- Used to normalize text from fixed-width fields
- Essential for cleaning imported data
- Part of the VB6 string manipulation library
- Available in all VB versions
- Related to <code>RTrim</code> (removes trailing spaces) and Trim (removes both)</p>
<h2 id="typical-uses">Typical Uses</h2>
<ol>
<li><strong>Remove Leading Spaces</strong></li>
</ol>
<pre><code class="language-vbnet">   cleanText = LTrim(&quot;   Hello&quot;)
   ```
2. **Clean User Input**
   ```vb
   userName = LTrim(txtUsername.Text)
   ```
3. **Process Fixed-Width Data**
   ```vb
   field = LTrim(Mid(line, 1, 20))
   ```
4. **Normalize Text**
   ```vb
   normalizedText = LTrim(RTrim(inputText))
   ```
5. **Data Import Cleanup**
   ```vb
   value = LTrim(csvField)
   ```
6. **Remove Padding**
   ```vb
   If LTrim(textBox.Text) = &quot;&quot; Then
       MsgBox &quot;Required field&quot;
   End If
   ```
7. **Format Display**
   ```vb
   lblName.Caption = LTrim(recordset(&quot;Name&quot;))
   ```
8. **Conditional Processing**
   ```vb
   If LTrim(line) &lt;&gt; &quot;&quot; Then
       ProcessLine line
   End If
   ```
## Basic Examples
### Example 1: Basic Usage</code></pre>
<p>vb
Dim result As String
result = LTrim("   Hello")           ' Returns "Hello"
result = LTrim("Hello   ")           ' Returns "Hello   " (trailing preserved)
result = LTrim("   Hello World   ")  ' Returns "Hello World   "
result = LTrim("NoSpaces")           ' Returns "NoSpaces"
result = LTrim("     ")              ' Returns ""
result = LTrim("")                   ' Returns ""</p>
<pre><code>### Example 2: Clean User Input</code></pre>
<p>vb
Private Sub txtUsername_LostFocus()
    ' Remove leading spaces from input
    txtUsername.Text = LTrim(txtUsername.Text)
    ' Validate
    If LTrim(txtUsername.Text) = "" Then
        MsgBox "Username is required", vbExclamation
        txtUsername.SetFocus
    End If
End Sub</p>
<pre><code>### Example 3: Process Fixed-Width File</code></pre>
<p>vb
Sub ProcessFixedWidthFile(ByVal filename As String)
    Dim fileNum As Integer
    Dim line As String
    Dim firstName As String
    Dim lastName As String
    fileNum = FreeFile
    Open filename For Input As #fileNum
    Do While Not EOF(fileNum)
        Line Input #fileNum, line
        ' Extract fields (positions 1-20 and 21-40)
        firstName = LTrim(Mid(line, 1, 20))
        lastName = LTrim(Mid(line, 21, 20))
        Debug.Print firstName &amp; " " &amp; lastName
    Loop
    Close #fileNum
End Sub</p>
<pre><code>### Example 4: Text Normalization</code></pre>
<p>vb
Function NormalizeText(ByVal text As String) As String
    ' Remove leading and trailing spaces
    NormalizeText = LTrim(RTrim(text))
    ' Could also use: NormalizeText = Trim(text)
End Function
' Usage
Dim clean As String
clean = NormalizeText("   Hello World   ")  ' Returns "Hello World"</p>
<pre><code>## Common Patterns
### Pattern 1: `FullTrim` (combine with `RTrim`)</code></pre>
<p>vb
Function FullTrim(ByVal text As String) As String
    FullTrim = LTrim(RTrim(text))
    ' Note: Can also use built-in Trim() function
End Function</p>
<pre><code>### Pattern 2: `IsBlank` (check for empty or whitespace)</code></pre>
<p>vb
Function IsBlank(ByVal text As String) As Boolean
    IsBlank = (LTrim(RTrim(text)) = "")
End Function</p>
<pre><code>### Pattern 3: `SafeLTrim` (handle Null)</code></pre>
<p>vb
Function SafeLTrim(ByVal text As Variant) As String
    If IsNull(text) Then
        SafeLTrim = ""
    Else
        SafeLTrim = LTrim(text)
    End If
End Function</p>
<pre><code>### Pattern 4: `CleanInput`</code></pre>
<p>vb
Function CleanInput(ByVal userInput As String) As String
    ' Remove leading/trailing spaces and convert to proper case
    CleanInput = LTrim(RTrim(userInput))
    If CleanInput &lt;&gt; "" Then
        CleanInput = UCase(Left(CleanInput, 1)) &amp; LCase(Mid(CleanInput, 2))
    End If
End Function</p>
<pre><code>### Pattern 5: `TrimFields` (process array)</code></pre>
<p>vb
Sub TrimFields(fields() As String)
    Dim i As Integer
    For i = LBound(fields) To UBound(fields)
        fields(i) = LTrim(RTrim(fields(i)))
    Next i
End Sub</p>
<pre><code>### Pattern 6: `ParsePaddedValue`</code></pre>
<p>vb
Function ParsePaddedValue(ByVal paddedText As String) As String
    ' Remove leading spaces from fixed-width field
    ParsePaddedValue = LTrim(paddedText)
End Function</p>
<pre><code>### Pattern 7: `ValidateRequired`</code></pre>
<p>vb
Function ValidateRequired(ByVal fieldValue As String, _
                         ByVal fieldName As String) As Boolean
    If LTrim(RTrim(fieldValue)) = "" Then
        MsgBox fieldName &amp; " is required", vbExclamation
        ValidateRequired = False
    Else
        ValidateRequired = True
    End If
End Function</p>
<pre><code>### Pattern 8: `TrimAllControls`</code></pre>
<p>vb
Sub TrimAllControls(ByVal frm As Form)
    Dim ctrl As Control
    For Each ctrl In frm.Controls
        If TypeOf ctrl Is TextBox Then
            ctrl.Text = LTrim(RTrim(ctrl.Text))
        End If
    Next ctrl
End Sub</p>
<pre><code>### Pattern 9: `ParseCSVField`</code></pre>
<p>vb
Function ParseCSVField(ByVal field As String) As String
    ' Remove quotes and trim
    If Left(field, 1) = """" And Right(field, 1) = """" Then
        field = Mid(field, 2, Len(field) - 2)
    End If
    ParseCSVField = LTrim(RTrim(field))
End Function</p>
<pre><code>### Pattern 10: `RemoveLeadingSpaces`</code></pre>
<p>vb
Sub RemoveLeadingSpaces(ByVal textBox As TextBox)
    Dim selStart As Long
    selStart = textBox.SelStart
    textBox.Text = LTrim(textBox.Text)
    textBox.SelStart = selStart
End Sub</p>
<pre><code>## Advanced Examples
### Example 1: Data Import Processor</code></pre>
<p>vb
' Class: DataImporter
Private m_data As Collection
Public Sub ImportFixedWidthFile(ByVal filename As String)
    Dim fileNum As Integer
    Dim line As String
    Dim record As Dictionary
    Set m_data = New Collection
    fileNum = FreeFile
    Open filename For Input As #fileNum
    Do While Not EOF(fileNum)
        Line Input #fileNum, line
        If Len(line) &gt;= 60 Then
            Set record = New Dictionary
            ' Extract and trim fields
            record("ID") = LTrim(Mid(line, 1, 10))
            record("Name") = LTrim(Mid(line, 11, 30))
            record("City") = LTrim(Mid(line, 41, 20))
            m_data.Add record
        End If
    Loop
    Close #fileNum
End Sub
Public Property Get RecordCount() As Long
    RecordCount = m_data.Count
End Property
Public Function GetRecord(ByVal index As Long) As Dictionary
    Set GetRecord = m_data(index)
End Function</p>
<pre><code>### Example 2: Text Field Validator</code></pre>
<p>vb
' Class: TextValidator
Private m_errors As Collection
Public Sub ValidateForm(ByVal frm As Form)
    Set m_errors = New Collection
    Dim ctrl As Control
    For Each ctrl In frm.Controls
        If TypeOf ctrl Is TextBox Then
            ValidateTextBox ctrl
        End If
    Next ctrl
End Sub
Private Sub ValidateTextBox(ByVal txt As TextBox)
    Dim trimmed As String
    trimmed = LTrim(RTrim(txt.Text))
    ' Check if required (assuming Tag property indicates required)
    If txt.Tag = "Required" Then
        If trimmed = "" Then
            m_errors.Add "Field '" &amp; txt.Name &amp; "' is required"
        End If
    End If
    ' Check minimum length
    If txt.Tag Like "MinLen:*" Then
        Dim minLen As Integer
        minLen = Val(Mid(txt.Tag, 8))
        If Len(trimmed) &lt; minLen Then
            m_errors.Add "Field '" &amp; txt.Name &amp; "' must be at least " &amp; _
                        minLen &amp; " characters"
        End If
    End If
End Sub
Public Property Get IsValid() As Boolean
    IsValid = (m_errors.Count = 0)
End Property
Public Property Get Errors() As Collection
    Set Errors = m_errors
End Property</p>
<pre><code>### Example 3: String Utilities Module</code></pre>
<p>vb
' Module: StringUtils
Public Function TrimAll(ByVal text As String) As String
    TrimAll = LTrim(RTrim(text))
End Function
Public Function IsNullOrWhitespace(ByVal text As Variant) As Boolean
    If IsNull(text) Then
        IsNullOrWhitespace = True
    ElseIf VarType(text) = vbString Then
        IsNullOrWhitespace = (LTrim(RTrim(text)) = "")
    Else
        IsNullOrWhitespace = False
    End If
End Function
Public Function NormalizeSpaces(ByVal text As String) As String
    Dim result As String
    Dim i As Integer
    Dim lastWasSpace As Boolean
    ' Remove leading spaces
    text = LTrim(text)
    ' Collapse multiple spaces to single space
    For i = 1 To Len(text)
        If Mid(text, i, 1) = " " Then
            If Not lastWasSpace Then
                result = result &amp; " "
                lastWasSpace = True
            End If
        Else
            result = result &amp; Mid(text, i, 1)
            lastWasSpace = False
        End If
    Next i
    NormalizeSpaces = RTrim(result)
End Function
Public Function CleanTextArray(textArray() As String) As String()
    Dim i As Integer
    Dim result() As String
    ReDim result(LBound(textArray) To UBound(textArray))
    For i = LBound(textArray) To UBound(textArray)
        result(i) = LTrim(RTrim(textArray(i)))
    Next i
    CleanTextArray = result
End Function</p>
<pre><code>### Example 4: Form Input Manager</code></pre>
<p>vb
' Class: FormInputManager
Private m_form As Form
Public Sub AttachToForm(ByVal frm As Form)
    Set m_form = frm
End Sub
Public Sub TrimAllInputs()
    Dim ctrl As Control
    For Each ctrl In m_form.Controls
        If TypeOf ctrl Is TextBox Then
            ctrl.Text = LTrim(RTrim(ctrl.Text))
        ElseIf TypeOf ctrl Is ComboBox Then
            ctrl.Text = LTrim(RTrim(ctrl.Text))
        End If
    Next ctrl
End Sub
Public Function ValidateRequired() As Boolean
    Dim ctrl As Control
    Dim trimmed As String
    Dim isValid As Boolean
    isValid = True
    For Each ctrl In m_form.Controls
        If TypeOf ctrl Is TextBox Then
            If ctrl.Tag = "Required" Then
                trimmed = LTrim(RTrim(ctrl.Text))
                If trimmed = "" Then
                    MsgBox "Field is required: " &amp; ctrl.Name, vbExclamation
                    ctrl.SetFocus
                    isValid = False
                    Exit For
                End If
            End If
        End If
    Next ctrl
    ValidateRequired = isValid
End Function
Public Function GetCleanValue(ByVal controlName As String) As String
    Dim ctrl As Control
    On Error Resume Next
    Set ctrl = m_form.Controls(controlName)
    If Not ctrl Is Nothing Then
        If TypeOf ctrl Is TextBox Or TypeOf ctrl Is ComboBox Then
            GetCleanValue = LTrim(RTrim(ctrl.Text))
        End If
    End If
End Function</p>
<pre><code>## Error Handling</code></pre>
<p>vb
' LTrim handles Null gracefully
Dim result As Variant
result = LTrim(Null)  ' Returns Null
' Safe trimming with Null check
Function SafeTrim(ByVal value As Variant) As String
    If IsNull(value) Then
        SafeTrim = ""
    Else
        SafeTrim = LTrim(RTrim(CStr(value)))
    End If
End Function</p>
<pre><code>## Performance Considerations
- **Fast Operation**: String trimming is highly optimized
- **Creates New String**: Does not modify original (immutable)
- **Avoid in Tight Loops**: Cache result if using multiple times
- **Use `Trim()` Instead**: If removing both leading and trailing spaces
## Best Practices
1. **Use `Trim()` for both sides** - More efficient than LTrim(RTrim())
2. **Validate before use** - Check for Null if using Variant
3. **Clean user input early** - Trim in validation routines
4. **Cache trimmed values** - Don&#x27;t call repeatedly in loops
5. **Document expectations** - Clarify if tabs/newlines should be removed
6. **Use with database fields** - Clean imported data
7. **Combine with validation** - Check for empty after trimming
8. **Apply to all text inputs** - Standardize data entry
9. **Consider Unicode** - `LTrim` only removes ASCII space (32)
10. **Test edge cases** - Empty strings, all spaces, Null values
## Comparison with Related Functions
| Function | Removes Leading | Removes Trailing | Removes Both |
|----------|----------------|------------------|--------------|
| **`LTrim`** | Yes | No | No |
| **`RTrim`** | No | Yes | No |
| **Trim** | Yes | Yes | Yes |
## `LTrim` vs `RTrim` vs Trim</code></pre>
<p>vb
Dim text As String
text = "   Hello World   "
' LTrim - removes leading spaces only
Debug.Print "[" &amp; LTrim(text) &amp; "]"   ' [Hello World   ]
' RTrim - removes trailing spaces only
Debug.Print "[" &amp; RTrim(text) &amp; "]"   ' [   Hello World]
' Trim - removes both leading and trailing
Debug.Print "[" &amp; Trim(text) &amp; "]"    ' [Hello World]
' Manual equivalent to Trim
Debug.Print "[" &amp; LTrim(RTrim(text)) &amp; "]"  ' [Hello World]</p>
<pre><code>## Whitespace Characters</code></pre>
<p>vb
' LTrim only removes space (ASCII 32)
Dim text As String
text = "   Hello"        ' Spaces - REMOVED
text = Chr(9) &amp; "Hello"  ' Tab - NOT REMOVED
text = Chr(10) &amp; "Hello" ' Line feed - NOT REMOVED
text = Chr(13) &amp; "Hello" ' Carriage return - NOT REMOVED
text = Chr(160) &amp; "Hello" ' Non-breaking space - NOT REMOVED
' To remove other whitespace, use custom function
Function TrimAllWhitespace(ByVal text As String) As String
    Do While Len(text) &gt; 0
        Dim ch As String
        ch = Left(text, 1)
        If ch = " " Or ch = Chr(9) Or ch = Chr(10) Or ch = Chr(13) Then
            text = Mid(text, 2)
        Else
            Exit Do
        End If
    Loop
    TrimAllWhitespace = text
End Function
```</p>
<h2 id="platform-notes">Platform Notes</h2>
<ul>
<li>Available in all VB6 versions</li>
<li>Part of VBA core library</li>
<li>Works with ANSI and Unicode strings</li>
<li>Only removes ASCII space character (32)</li>
<li>Returns new string (original unchanged)</li>
<li>Handles Null by returning Null</li>
<li>Available in <code>VBScript</code></li>
<li>Same behavior across all Windows versions</li>
</ul>
<h2 id="limitations">Limitations</h2>
<ul>
<li><strong>Only Space Character</strong>: Does not remove tabs, line feeds, etc.</li>
<li><strong>No Unicode Whitespace</strong>: Does not remove non-breaking spaces, em spaces, etc.</li>
<li><strong>Creates New String</strong>: Cannot modify string in place</li>
<li><strong>No Custom Characters</strong>: Cannot specify which characters to remove</li>
<li><strong>Null Propagation</strong>: Returns Null if input is Null</li>
</ul>
<h2 id="related-functions">Related Functions</h2>
<ul>
<li><code>RTrim</code>: Removes trailing spaces from string</li>
<li><code>Trim</code>: Removes both leading and trailing spaces</li>
<li><code>Left</code>: Returns leftmost characters</li>
<li><code>Mid</code>: Returns substring from middle</li>
<li><code>Replace</code>: Replaces occurrences of substring</li>
<li><code>Space</code>: Creates string of spaces</li>
<li><code>Len</code>: Returns string length</li>
</ul>
        </article>
        
        <div style="margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-color);">
            <p>
                <a href="index.html">← Back to String</a> |
                <a href="../index.html">View all functions</a>
            </p>
        </div>

    </main>

    <footer>
        <div class="container">
            <p>&copy; 2024-2026 VB6Parse Contributors. Licensed under the MIT License.</p>
        </div>
    </footer>
</body>
</html>