R URLencode()

Jmnote (토론 | 기여)님의 2021년 5월 7일 (금) 12:35 판 (→‎개요)

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 }}