Find the fist three and last three character of String

7689124345657, Nam54637ata, —678+++ - Print the number by taking first 3 and last 3 charactersSS

Hello @Sandhya_Gajare

So the below are the three individual strings and you want you want the first and last three characters from these three or it is only one string. Please confirm

7689124345657,Nam54637ata,—678+++ -

yes

yes all are individual string

this three are different string and from that string i have get fisrt three and last three character and join it and combine it

Hello @Sandhya_Gajare

The format of data remains same or it varies

Ex: 7689124345657, it always contains numbers but it may vary

7689124345657

i need my ans like 768657 similer to other 2 string

@Sandhya_Gajare Please try the attached workflow

Example.zip (3.0 KB)

Assign
in_Text= “7689124345657”
strStart=in_Text.Substring(0,3)
strEnd=in_Text.Substring((in_Text.Length-3),3)
out_Text=strStart+strEnd

Just use input as string and then just concatenate the first 3 index and last 3 index. Hope this answers the question. Below is the query:-
var(0)+var(1)+var(2) +var(var.Length-3)+var(var.Length-2)+var(var.Length-1)

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.