Citrix_Copy a part of text

Hey to all. I have a problem and I need your help. I am trying to copy a text in Citrix environment, but I need only a part of this text, let’s say from 4th to 10th character. I use “select & copy” activity but it is copied all the text. Do you have any idea how to solve this problem?

how about you modify after capturing the text?

citrixText.Substring(3,7).Trim()

Hello.

You can also use Get From Clipboard activity to returned the copies text as a variable in Studio and then do what @vvaidya has specified.

Thank you @vvaidya and @Cosmin_Ion_Nicolae. You were too helpful.