"함수 is ip()"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
7번째 줄: 7번째 줄:
[[category: Bash]]
[[category: Bash]]
* 순수 bash
* 순수 bash
<source lang='bash'>
<syntaxhighlight lang='bash'>
function is_ip() {
function is_ip() {
IFS='.' read -ra nums <<< "$1"
IFS='.' read -ra nums <<< "$1"
29번째 줄: 29번째 줄:
is_ip 0.0.0.00
is_ip 0.0.0.00
is_ip 135.79.246.080
is_ip 135.79.246.080
</source>
</syntaxhighlight>
* 신버전 [[ipcalc]] 활용(v0.41)
* 신버전 [[ipcalc]] 활용(v0.41)
<source lang='bash'>
<syntaxhighlight lang='bash'>
echo $((`ipcalc 135.79.246.80 | grep INVALID | wc -l`^1))
echo $((`ipcalc 135.79.246.80 | grep INVALID | wc -l`^1))
# 1
# 1
echo $((`ipcalc 135.79.246.280 | grep INVALID | wc -l`^1))
echo $((`ipcalc 135.79.246.280 | grep INVALID | wc -l`^1))
# 0
# 0
</source>
</syntaxhighlight>
* 구버전 [[ipcalc]] 활용(2008)
* 구버전 [[ipcalc]] 활용(2008)
<source lang='bash'>
<syntaxhighlight lang='bash'>
ipcalc -s -c 135.79.246.80; echo $(($?^1))
ipcalc -s -c 135.79.246.80; echo $(($?^1))
# 1
# 1
ipcalc -s -c 135.79.246.280; echo $(($?^1))
ipcalc -s -c 135.79.246.280; echo $(($?^1))
# 0
# 0
</source>
</syntaxhighlight>


==PHP==
==PHP==
{{참고|PHP is_ip()}}
{{참고|PHP is_ip()}}
[[category: PHP]]
[[category: PHP]]
<source lang='php'>
<syntaxhighlight lang='php'>
function is_ip($ip) { return ip2long($ip)?true:false; }
function is_ip($ip) { return ip2long($ip)?true:false; }


59번째 줄: 59번째 줄:
var_dump( is_ip('1.1.1.256') );
var_dump( is_ip('1.1.1.256') );
var_dump( is_ip('135.79.256.080') );
var_dump( is_ip('135.79.256.080') );
</source>
</syntaxhighlight>


==Python==
==Python==
{{참고|파이썬 is_ip()}}
{{참고|파이썬 is_ip()}}
[[분류: Python]]
[[분류: Python]]
<source lang='python'>
<syntaxhighlight lang='python'>
import ipaddress
import ipaddress
def is_ip(ip):
def is_ip(ip):
83번째 줄: 83번째 줄:
print( is_ip('192.168.0.256') )
print( is_ip('192.168.0.256') )
print( is_ip('135.79.256.080') )
print( is_ip('135.79.256.080') )
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2020년 11월 2일 (월) 02:33 판


함수 is_ip()

1 Bash

  • 순수 bash
function is_ip() {
	IFS='.' read -ra nums <<< "$1"
	if [ ${#nums[@]} -ne 4 ]; then echo 0; return; fi
	for num in "${nums[@]}"; do
		if [ "$num" != "$((10#$num))" ]||[ $num -lt 0 ]||[ $num -gt 255 ]; then echo 0; return; fi
	done	
	echo 1
}

# 1
is_ip 0.0.0.0
is_ip 0.0.0.1
is_ip 0.0.1.0
is_ip 255.255.255.255
is_ip 135.79.246.80

# 0
is_ip 0.0.0.256
is_ip 0.0.0.0.0
is_ip 0.0.0.00
is_ip 135.79.246.080
  • 신버전 ipcalc 활용(v0.41)
echo $((`ipcalc 135.79.246.80 | grep INVALID | wc -l`^1))
# 1
echo $((`ipcalc 135.79.246.280 | grep INVALID | wc -l`^1))
# 0
ipcalc -s -c 135.79.246.80; echo $(($?^1))
# 1
ipcalc -s -c 135.79.246.280; echo $(($?^1))
# 0

2 PHP

function is_ip($ip) { return ip2long($ip)?true:false; }

# true
var_dump( is_ip('1.1.1.1') );
var_dump( is_ip('135.79.246.80') );

# false
var_dump( is_ip('1.1.1.1.') );
var_dump( is_ip('1.1.1.256') );
var_dump( is_ip('135.79.256.080') );

3 Python

import ipaddress
def is_ip(ip):
    try:
        ipaddress.ip_address(ip)
    except ValueError:
        return False
    return True
    
# True
print( is_ip('1.1.1.1') )
print( is_ip('192.168.0.1') )
print( is_ip('135.79.246.80') )

# False
print( is_ip('1.1.1.1.') )
print( is_ip('1.1.1.256') )
print( is_ip('192.168.0.256') )
print( is_ip('135.79.256.080') )

4 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}