문자열 필터 기능 추가
관리자
0
1731
2021.10.07 18:19
통신을 통해 받은 문자열에서 정보를 쉽게 추출할 수 있도록 태그에 문자열 필터(String Filter)를 추가하였습니다.
현재 XML(Xpath 이용)과 JSON(JSONPath 이용) 필터를 지원합니다.
문자열 필터를 설정한 태그는 읽기 전용입니다.
1. XML 필터
- 형식: xml:// + XPath
- XPath : https://www.w3schools.com/xml/xpath_syntax.asp
- 예제
xml:///bookstore/book[1]/title
xml:///bookstore/attributes/@attr1
xml:///bookstore/elements/int8
* JSON 필터
- 형식: json:// + JSONPath
- JSONPath : https://support.smartbear.com/alertsite/docs/monitors/api/endpoint/jsonpath.html
- 예제
json://$.store.book[0]
json://$.store.book[0]/title
json://$.store.elements.int8