How to use a get text in un terminal

Hello, I have a problem with a method get text from a terminal AS400.
This sign § is interpreted as a “S”, i need this sign § to transform in “@”.
THANKS

I am not familiar with AS400 but if you know that § is being taken as S, maybe you can use .replace to replace the S with @

Can you please share a screenshot of text present in terminal?

i can’t replace this because replace all S on the string.

i can’t because it’s sensibly information

for example i have a string like this username§tiscali.com and get text activity transform this § in S.
and i need @ for email

If the domain part §tiscali.com is always the same, then just use string manipulation, like substring to get the domain part and username part, then join them together like finalstring = username & @ & domain

1 Like

there are millions possibilities domains, there is another way or method to get text from a application. I tried with get text and cv get text

Try the UiPath Terminal activities Activities - Get Text at Position (uipath.com)

1 Like

If this is fixed that after “§” “tiscali.com” will be there then you can use below-mentioned solution.

Solution:
GetTextvariable.Replace(“Stiscali”,“@tiscali”)

I think this will solve your issue.

@Loan_D_ng_Ng_c Have you tried this?

Poster mentioned it is not always tiscali…
Might be any other domain out of million possible domain

Doesn’t work because i have many domains.

Doesn’t work because, i can’t connect on terminal!