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

TEXT Problem

Former Member
0 Likes
638

Guru's,

text = Departure.

i wish to select text "Dep" or "dep" how to do this.

Plz guide.

1 ACCEPTED SOLUTION
Read only

former_member404244
Active Contributor
0 Likes
616

Hi,

Try like this

data : v_text(3) type c.

v_text = text + 0(3).

write 😕 v_text.

Regards,

Nagaraj

5 REPLIES 5
Read only

former_member386202
Active Contributor
0 Likes
616

Hi,

do like this.

data : text(20) type c,

text1(3) typec,

text = Departure.

text1 = text+0(3).

write : / text1.

output

Dep

Reward if helpfull.

Regards,

Prashant

Read only

former_member404244
Active Contributor
0 Likes
617

Hi,

Try like this

data : v_text(3) type c.

v_text = text + 0(3).

write 😕 v_text.

Regards,

Nagaraj

Read only

Former Member
0 Likes
616

Hi ,

Try this.

text = departure.

text1 = text + 0(3).

Reward If Useful.

Regards,

Chitra

Message was edited by:

Chitra Parameswaran

Read only

0 Likes
616

Hi,

you could also try this,

text = departure.

text = text + 0(3).

Reward if reqmt is met!!

Thanks,

Vaishnavi

Read only

Former Member
0 Likes
616

data: text(3).

text = Departure.

write: text.