"R URLencode()"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
3번째 줄: 3번째 줄:
* "Encode A (Partial) URL"
* "Encode A (Partial) URL"


<source lang='r' run>
<syntaxhighlight lang='r' run>
URLencode("ab cd")  ## [1] "ab%20cd"
URLencode("ab cd")  ## [1] "ab%20cd"
URLdecode("ab%20cd") ## [1] "ab cd"
URLdecode("ab%20cd") ## [1] "ab cd"
</source>
</syntaxhighlight>
<source lang='r' run>
<syntaxhighlight lang='r' run>
URLencode("개요")        ## [1] "%B0%B3%BF%E4"
URLencode("개요")        ## [1] "%B0%B3%BF%E4"
URLdecode("%B0%B3%BF%E4") ## [1] "\xb0\xb3\xbf\xe4"
URLdecode("%B0%B3%BF%E4") ## [1] "\xb0\xb3\xbf\xe4"
</source>
</syntaxhighlight>
<source lang='r' run>
<syntaxhighlight lang='r' run>
URLencode('hello 123 http://zetawiki.com 한글')              ## [1] "hello%20123%20http://zetawiki.com%20%ED%95%9C%EA%B8%80"
URLencode('hello 123 http://zetawiki.com 한글')              ## [1] "hello%20123%20http://zetawiki.com%20%ED%95%9C%EA%B8%80"
URLdecode("hello%20123%20http://zetawiki.com%20%C7%D1%B1%DB") ## [1] "hello 123 http://zetawiki.com \xc7ѱ\xdb"
URLdecode("hello%20123%20http://zetawiki.com%20%C7%D1%B1%DB") ## [1] "hello 123 http://zetawiki.com \xc7ѱ\xdb"
</source>
</syntaxhighlight>


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

2021년 5월 7일 (금) 12:45 기준 최신판

1 개요[ | ]

R URLencode()
  • "Encode A (Partial) URL"
URLencode("ab cd")   ## [1] "ab%20cd"
URLdecode("ab%20cd") ## [1] "ab cd"
URLencode("개요")         ## [1] "%B0%B3%BF%E4"
URLdecode("%B0%B3%BF%E4") ## [1] "\xb0\xb3\xbf\xe4"
URLencode('hello 123 http://zetawiki.com 한글')               ## [1] "hello%20123%20http://zetawiki.com%20%ED%95%9C%EA%B8%80"
URLdecode("hello%20123%20http://zetawiki.com%20%C7%D1%B1%DB") ## [1] "hello 123 http://zetawiki.com \xc7ѱ\xdb"

2 같이 보기[ | ]

3 참고[ | ]

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