Link to home
Start Free TrialLog in
Avatar of Vincentg
VincentgFlag for Netherlands

asked on

Incompatible types

Hello,

I try to find and change 1 character into 3 characters with :

r : string;

while Pos('&', r) > 0 do
r[Pos('&', r)] := '%26';

I'm looking for some code that can do this.

Thanks,
Vincent
ASKER CERTIFIED SOLUTION
Avatar of zebada
zebada

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Vincentg

ASKER

Thanks for your quick response ;)