0

I need to replace "." with "˙", im not sure how to do this in VBS, in ruby its gsub(".","˙") but i cant find anything to do this in VBS

3 Answers 3

3

Did you try this?

REPLACE(str, ".", "˙")
Sign up to request clarification or add additional context in comments.

Comments

1

It is called Replace.

Comments

0

Here is the MSDN on the Replace function in VBS

https://msdn.microsoft.com/en-us/library/bt3szac5(v=vs.90).aspx

And here is w3schools

http://www.w3schools.com/asp/func_replace.asp

Replace(string,find,replacewith[,start[,count[,compare]]])

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.