반응형
Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

개발꿈나무

[RPA] UiPath Studio 자잘자잘 모음집 본문

RPA

[RPA] UiPath Studio 자잘자잘 모음집

HYOKYE0NG 2022. 3. 17. 11:55
반응형

 

UI Target Selector에 변수값 대입하기

  - {{변수이름}}

 

 

변수에 text와 변수값 할당하기

- "text" & 변수

 

 

null 조건 처리하기

- IsNull: IsNothing(변수)

- IsNotNull: Not IsNulll(변수)

 

Excel에서 column 읽어 string으로 바꾸기, list로 바꾸기

- Read Column의 return type은 IEnumerable<Object>

 

IEnumerable<Object> type을 string으로 바꾸기: String.Join(Environment.NewLine , readColumnResult)

- 각각의 data를 줄바꿈을 사이에 끼워 하나의 string으로 만든다.

 

string을 list로 만들기: plant_str.Split(environment.NewLine.ToArray, stringsplitoptions.RemoveEmptyEntries)

- 줄바꿈을 기준으로 데이터를 끊어 list로 만듦

stringsplitoptions.None: null값도 같이 return

StringSplitOptions.RemoveEmptyEntries: null값은 제거하고 return

 

 

변수에 null값 할당하기

- 변수 = Nothing

 

 

반응형
Comments