Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

MOVE some characters

Former Member
0 Likes
413

Hi,

I Know that it's a basic question but I forgot how to do that 🐵

I want to move some characters from a variable, for example the variable contain the word HOLA and i h¡want to move onle LA to another variable. So I remember that you have to indicated the position or something like that but I don't remember exactly

Thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
384

myvariable = 'HOLA'.

MOVE myvariable+2(2) TO myothervariable.

2 REPLIES 2
Read only

Former Member
0 Likes
385

myvariable = 'HOLA'.

MOVE myvariable+2(2) TO myothervariable.

Read only

0 Likes
384

Thank you very much 🐵