Tip

Strip String Function

Strip values from string
Function StripString

syntax

String$ = StripString( Arg1$, Arg2$)

Arguments

Arg1$ : String that you want to strip

Arg2$ : Array of string, contains the values that you want to remove from
Arg1$

Return value : String


Example

sFaxNumber$ = "(32) 16/44.54.63"
Redim argu(8) As String
argu(0) = "/"
argu(1) = "."
argu(2) = ","
argu(3) = "-"
argu(4) = "+"
argu(5) = "("
argu(6) = ")"
argu(7) = " "
argu(8) = ";"
sFaxNumber$ = StripString( sFaxNumber$, argu)
print sFaxNumber$ ' result : 3216445463


Function StripString( StripValue As String, StripArgument() As String)
tmp$ = StripValue
Length% = Len(tmp$)
For i% = Lbound( StripArgument ) To Ubound( StripArgument )
While (Instr( 1, tmp$, StripArgument(i%)) > 0)
place% = Instr( 1, tmp$, StripArgument(i%))
tmpsuffix$ = Left$(tmp$, (place% - 1) )
tmpprefix$ = Mid$(tmp$, (place%+1), (Length% - place%) )
tmp$ = tmpsuffix$ & tmpprefix$
Wend
Next
StripString = tmp$
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.