regexp subgroup 추출하기 > IT 기술백서
FindStringSubmatch() 를 사용하면 []string 형태로 리턴한다. [code] r := regexp.MustCompile(“(?is)[^\”]+\”([^\”]+)”) return r.FindStringSubmatch(string(data))[1] [/code]
FindStringSubmatch() 를 사용하면 []string 형태로 리턴한다. [code] r := regexp.MustCompile(“(?is)[^\”]+\”([^\”]+)”) return r.FindStringSubmatch(string(data))[1] [/code]
1. 첫번째 방법 [code] str := 129.29438455 if reflect.TypeOf(str).String() != “string” { // } [/code] 2. 두번째 방법
scss 의 min 과 max 함수가 css 의 동일 함수하고 충돌해서 생기는 오류다. 해결방법 css 에서는 대소문자 구분이 없고
[code] package main /** * Api Interface **/ type Api interface { save() (bool, error) } /** * Work
1. selinux 설정을 확인해 본다 [code] # sudo getsebool -a | grep ftp ftpd_anon_write –> off ftpd_connect_all_unreserved –>
pupeteer 는 크롬드라이버나 셀레늄 등을 통합으로 설치하는 종합툴이다 설치: nodejs 설치 후 다음을 실행 [code] $ npm i pupeteer
https://1004lucifer.blogspot.com/2019/10/jquery-ajax-chrome-firefox-ie11.html function requestDownloadFile(reqObj) { function getFileName (contentDisposition) { var fileName
크롬드라이버 설치 [code] yum -y install google-chrome-stable [/code] 크롬드라이버 데몬으로 실행 [code] $ google-chrome –headless –hide-scrollbars –remote-debugging-port=9222 –disable-gpu &;
[code] $ curl -sL https://rpm.nodesource.com/setup_14.x | sudo bash – $ sudo yum install -y nodejs $ node -v [/code]