http

·Javascript
정규표현식 /(https?:\/\/[^\s]+)/g https?:\/\/ http:// 또는 https:// 찾음 [^\s]+ 공백이 아닌 문자열을 하나 또는 그 이상 찾음 g Global을 표현하며 문자열 내 모든 패턴을 검색 활용 var str = `Kakao: https://www.kakaocorp.com` let formatted = str.replace(/(https?:\/\/[^\s]+)/g, '$1');
·Server
HTTP Header 정의 HTTP 통신에 필요한 정보 HTTP 표준은 현재 RFC2616(1999년) -> RFC7230~7235(2014년) 개정됨 ex) Request Client, Request Body, Server, Cache... 분류 General Header 메시지 전체에 적용되는 정보 ex) Connection: close Request Header 요청 정보 ex) User-Agent: Mozilla/5.0 (Macintosh; ..) Response Header 응답 정보 ex) Server: Apache Represetation Header 표현 헤더 RFC2616 기준 Entity Header(엔티티 바디정보)에서 개정 ex) Content-type: text/html, Cont..
helperwoo
'http' 태그의 글 목록