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

Split at char132

Former Member
0 Likes
810

Hi All,

I want to move a field value to one more field splitting at char position 132.How this can be done?

1 ACCEPTED SOLUTION
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
769

val1 = val+0(131).

Hi All,

I want to move a field value to one more field splitting at char position 132.How this can be done?

5 REPLIES 5
Read only

Former Member
0 Likes
769

if i am not going wrong

let x be a variable of sum 255 char

so u can move this to string

and after that u can use this string manipulation

y = x

z = y132(123)

cheers

s.janagar

Read only

Former Member
0 Likes
769

Hello

If I it is correct has understood question, that:

var2 = var1(132).

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
770

val1 = val+0(131).

Read only

0 Likes
769

or use FM STRING_SPLIT_AT_POSITION

Read only

Former Member
0 Likes
769

a = b(132).

c = b+132.

CONCATENATE a d c INTO b.

d -value to be inserted.