2012/1/1 nando :
> Question: Code piece
>
> dim i as integer
> dim s as string
>
> i = 12345
> s = "the number is "
>
> Replace$( s , "", STR$(i) , gb.case)
> Replace$( s , "", STR$(i) , gb.case)
>
>
> The first Replace will do the substitution
> The second Replace will not do the substitutio
Question: Code piece
dim i as integer
dim s as string
i = 12345
s = "the number is "
Replace$( s , "", STR$(i) , gb.case)
Replace$( s , "", STR$(i) , gb.case)
The first Replace will do the substitution
The second Replace will not do the substitution
The Question is this:
will th