Get text 관련 문의

get text를 사용하여 특정 글자를 변수에 저장하는경우
해당 글자의 앞6개를 지우고 저장하는 방법을 알고싶어요
잘 다루지 못하는 초보자라 해당 스크린샷을 첨부해주시면 감사합니다.
get text를 Second 라는 변수에 저장할 것입니다.
저장할때 앞글자 6개를 지우거나 저장한후에 해당변수의 앞개를 지우는 방법도 상관없습니다.

Hi @user118 ,

Get Text Activity returns output of type String. In your case, variable name is Second.

To Remove first 6 characters in the fetched string,
Use An Assign Activity

LHS : Second
RHS : Second.Substring(6)

screen Shot:
image

Note : To Simulate I have assigned some random string.

Hope this helps you out. Please mark this as solution if it helps you find the answer.

Happy Automating.!

Thanks,
Gautham.