Ilogic rule: replace character in string

Ilogic rule: replace character in string

Anonymous
Not applicable
4,391 Views
1 Reply
Message 1 of 2

Ilogic rule: replace character in string

Anonymous
Not applicable

Hi,

 

I'm looking for a way to change a , by a . via ilogic in a string.

 

In example i have this parameter named "param" with value 10,3

When i convert it to a string Cstr(param) i get a string "10,3". But i need it to say "10.3" for exporting to another program.

 

How should i handle this?

Accepted solutions (1)
4,392 Views
1 Reply
Reply (1)
Message 2 of 2

humbertogo
Advocate
Advocate
Accepted solution

Maybe something like

 

Dim param As String = ("10,3").Replace(",", ".")

0 Likes