strReplace

dealsmonkey

Active Member
Licensed User
Longtime User
Hi everyone,

i need to replace /n in string for an character but cannot figure it out !!

I have tried StrReplace, but get an error

Error description: Undeclared variable 'strreplace' is used before it was assigned any value.

I've been through all the help and docs :(

Any help please !!!


Neil


Sorry wrong thread, should be b4a !!
 
Last edited:

dealsmonkey

Active Member
Licensed User
Longtime User
You have the function Replace.
All string function are possible directly on a string .
Example:
Dim txt as String
txt=txt.Replace(Target As String, Replacement As String)

Best regards.

Klaus, forgot to say thanks for the help ! :sign0013:

neil
 
Upvote 0
Top