CHARACTERS DYNAMICS

HELLO ,

I HAVE IN ONE FIELD THE RFC IS THE NEXT VAML870654bw2 OR MAYBE with other person will be REBG900807 I need only the 4 characters the first 4 characters , then will keep the chracters in a new string, so i need the result:

StringRfc: VAML,
nect stringRfc: REBG how I can take the 4 characters???

regards

Hi @solvargas.85

Please try to use search first as this is a very basic request that you could have solved by looking at older topics.

You can achieve your output by using an Assign activity, like that:

newString = Strings.Left(newString,4)
1 Like