|
-
Mar 13th, 2002, 11:04 AM
#1
Thread Starter
Hyperactive Member
Replace comma
I want to know if there is a comma in a string and if yes replace it with a dot ".". I could probably figure this out by myself but i'"m to tiredor lazy
-
Mar 13th, 2002, 11:06 AM
#2
Frenzied Member
Use the Replace function.
VB Code:
Replace YourString, "," , "."
-
Mar 13th, 2002, 11:06 AM
#3
How about using the Replace() function?
VB Code:
str = Replace(str, ",", ".")
This world is not my home. I'm just passing through.
-
Mar 13th, 2002, 11:08 AM
#4
Thread Starter
Hyperactive Member
thanks I didn't knew that function
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|