regexp subgroup 추출하기 > IT 기술백서

FindStringSubmatch() 를 사용하면 []string 형태로 리턴한다.

 

[code]

r := regexp.MustCompile(“(?is)[^\”]+\”([^\”]+)”)

return r.FindStringSubmatch(string(data))[1]

[/code]

댓글 달기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다

위로 스크롤