cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

subString function in Message mapping

Former Member
0 Likes
7,860

Hi Guys,

               I am using subString function in message mapping to take last 8 characters of 10 character field. But it returns all 10 digits.

Here is the screen shot

View Entire Topic
Former Member
0 Likes

Hi Sam

you have used substring(2,10) which will give u 10 char as output

because substring(starting point of string index,number of characters)

you can use substring(2,8) which will give you 8 char as output.

Regards

Raj