Application Development 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: 

TEXT Problem

former_member1349771
Participant
0 Kudos

Guru's,

text = Departure.

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

Plz guide.

1 ACCEPTED SOLUTION

former_member404244
Active Contributor
0 Kudos

Hi,

Try like this

data : v_text(3) type c.

v_text = text + 0(3).

write 😕 v_text.

Regards,

Nagaraj

5 REPLIES 5

former_member386202
Active Contributor
0 Kudos

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

former_member404244
Active Contributor
0 Kudos

Hi,

Try like this

data : v_text(3) type c.

v_text = text + 0(3).

write 😕 v_text.

Regards,

Nagaraj

Former Member
0 Kudos

Hi ,

Try this.

text = departure.

text1 = text + 0(3).

Reward If Useful.

Regards,

Chitra

Message was edited by:

Chitra Parameswaran

0 Kudos

Hi,

you could also try this,

text = departure.

text = text + 0(3).

Reward if reqmt is met!!

Thanks,

Vaishnavi

Former Member
0 Kudos

data: text(3).

text = Departure.

write: text.