Pad Text To String

Pad Text To String

This function is good to use when creating records with a fixed with.
In banking I've used it when creating transaction files where the record has a
fixed length and all fields has to be either numeric or alfanueric and padded
with zeros or spaces to fill.
This function takes a teststring (textToPad) and adds characters before or
after.
Function padText(textToPad As String, newLen As Integer, padWith As String,
psFix As String) As String

'textToPad
'String; text to be "padded"

'newLen
'Integer; Length of the new String (total length)


'padWidth
'String; What to fill With


'psFix
'String; determines whether to Add it as prefix or suffix to the String

Dim orglen As Integer
Dim tmpString As String
Dim tmpPad As String

orglen = Len(textToPad)
' returns If the new length is the same as the old length

If orglen = newLen Then
padText = textToPad
Exit Function
End If
If orglen > newLen Then
' New length cannot be less than the original length

Msgbox "Error textToPad: Instring " + textToPad + " length " +
Cstr(orgLen) +_
" is less than new length " + Cstr(newLen)
End If

tmpPad = String$(newLen - orgLen, padWith)
If psFix = "P" Then

    Requires Free Membership to View

    Register today to access targeted resources from our editorial writers and independent industry experts focused on Lotus Domino, Notes, Workplace and other related technologies.

    By submitting your registration information to SearchDomino.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchDomino.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

'Prefix
tmpString = tmpPad + textToPad
Elseif psFix = "S" Then
'Suffix
tmpString = textToPad + tmpPad
Else
'Error
Msgbox "textToPad contains wrong arguments"
End If
If Len(tmpString) <> newLen Then
Msgbox "Error textToPad: New padded string " + tmpString +_
" is larger than the original string " + textToPad
End If

padText = tmpString
End Function

This was first published in November 2000

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.