globalMatch1 정규식 IP주소만 추출하는 방법 in Qt5 Qt5에서 제공하는 정규식 함수 globalMatch() 를 사용하여 문자열에 섞여 있는 ip주소를 추출하는 방법이 있습니다. IP 주소와 문자가 섞여있을 때 IP주소만 추출하는 방법을 알아보도록 하겠습니다. 1. IP 추출 예제 코드 #include QString stringWithIP = "local 192.168.1.1 google 172.217.175.238 naver 23.130.200.104"; QRegularExpression re("(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)"); QRegularExpressionMatchIterator i = re.globalMatch(st.. 2021. 11. 6. 이전 1 다음