-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbas_lib_str_0001.bas
91 lines (91 loc) · 3.03 KB
/
bas_lib_str_0001.bas
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
' -----------------------------------------------------------------------
' vbaMyLib Version: 0.1.2 Release Date: 20170123
' © Copyright 2001-2023 Manu Herrán
' Free download source code:
' http://manuherran.com/
' -----------------------------------------------------------------------
Option Explicit
' -----------------------------------------------------------------------
' Tested with Access 2003
' -----------------------------------------------------------------------
' Funciones
' -----------------------------------------------------------------------
' str_0001_fLPad
' str_0001_fStringMultilineToOneLineTrim
' str_0001_fRemoveAllQuotes
' str_0001_fRemoveAllSpacesAndTabs
' str_0001_leftSideIs
' str_0001_rightSideIs
' str_0001_leftSideOf
' str_0001_rightSideOf
' str_0001_firstCapital
'
' -----------------------------------------------------------------------
Function str_0001_fLPad(txt As String, pad As String, max_len As Integer)
Dim ret As String
ret = txt
While Len(ret) < max_len
ret = pad & ret
Wend
str_0001_fLPad = ret
End Function
Function str_0001_fStringMultilineToOneLineTrim(txt As String)
Dim ret As String
ret = txt
ret = Replace(ret, vbTab, " ")
ret = Replace(ret, vbCrLf, " ")
Do While (InStr(ret, " "))
ret = Replace(ret, " ", " ")
DoEvents
Loop
ret = Trim(ret)
str_0001_fStringMultilineToOneLineTrim = ret
End Function
Function str_0001_fRemoveAllQuotes(txt As String)
Dim ret As String
ret = txt
ret = Replace(ret, "'", "")
ret = Replace(ret, """", "")
str_0001_fRemoveAllQuotes = ret
End Function
Function str_0001_fRemoveAllSpacesAndTabs(txt As String)
Dim ret As String
ret = txt
ret = Replace(ret, " ", "")
ret = Replace(ret, vbTab, "")
ret = Trim(ret)
str_0001_fRemoveAllSpacesAndTabs = ret
End Function
Function str_0001_leftSideIs(stringText As String, leftSideText As String)
If (Left(stringText, Len(leftSideText)) = leftSideText) Then
str_0001_leftSideIs = True
Else
str_0001_leftSideIs = False
End If
End Function
Function str_0001_rightSideIs(stringText As String, rightSideText As String)
If (Right(stringText, Len(rightSideText)) = rightSideText) Then
str_0001_rightSideIs = True
Else
str_0001_rightSideIs = False
End If
End Function
Function str_0001_leftSideOf(stringText As String, textToSearch As String)
Dim pos As Long
pos = InStr(stringText, textToSearch)
str_0001_leftSideOf = Left(stringText, pos - 1)
End Function
Function str_0001_rightSideOf(stringText As String, textToSearch As String)
Dim pos As Long
Dim strLength As Long
pos = InStr(stringText, textToSearch)
strLength = Len(stringText)
If pos = 0 Or pos = strLength Then
str_0001_rightSideOf = ""
Else
str_0001_rightSideOf = Right(stringText, strLength - pos - Len(textToSearch) + 1)
End If
End Function
Function str_0001_firstCapital(stringText As String)
str_0001_firstCapital = UCase(Left(stringText, 1)) & LCase(Right(stringText, Len(stringText) - 1))
End Function