잠시만 기다려 주세요

     '싸우지 않는 이재명을 규탄한다. 민생충, 협치충, 역풍충.. 국민들은 치가 떨린다.'
전체검색 :  
이번주 로또 및 연금번호 발생!!   |  HOME   |  여기는?   |  바다물때표   |  알림 (16)  |  여러가지 팁 (1059)  |  추천 및 재미 (156)  |  자료실 (22)  |  
시사, 이슈, 칼럼, 평론, 비평 (613)  |  끄적거림 (136)  |  문예 창작 (716)  |  바람 따라 (75)  |  시나리오 (760)  |  드라마 대본 (248)  |  
살인!


    golang

golang - URL Parsing, url 파싱하기. parse
이 름 : 바다아이   |   조회수 : 13427         짧은 주소 : https://www.bada-ie.com/su/?411591781223
// URLs provide a [uniform way to locate resources](http://adam.heroku.com/past/2010/3/30/urls_are_the_uniform_way_to_locate_resources/).
// Here's how to parse URLs in Go.

package main

import "fmt"
import "net"
import "net/url"

func main() {

    // We'll parse this example URL, which includes a
    // scheme, authentication info, host, port, path,
    // query params, and query fragment.
    s := "postgres://user:pass@host.com:5432/path?k=v#f"

    // Parse the URL and ensure there are no errors.
    u, err := url.Parse(s)
    if err != nil {
        panic(err)
    }

    // Accessing the scheme is straightforward.
    fmt.Println(u.Scheme)

    // `User` contains all authentication info; call
    // `Username` and `Password` on this for individual
    // values.
    fmt.Println(u.User)
    fmt.Println(u.User.Username())
    p, _ := u.User.Password()
    fmt.Println(p)

    // The `Host` contains both the hostname and the port,
    // if present. Use `SplitHostPort` to extract them.
    fmt.Println(u.Host)
    host, port, _ := net.SplitHostPort(u.Host)
    fmt.Println(host)
    fmt.Println(port)

    // Here we extract the `path` and the fragment after
    // the `#`.
    fmt.Println(u.Path)
    fmt.Println(u.Fragment)

    // To get query params in a string of `k=v` format,
    // use `RawQuery`. You can also parse query params
    // into a map. The parsed query param maps are from
    // strings to slices of strings, so index into `[0]`
    // if you only want the first value.
    fmt.Println(u.RawQuery)
    m, _ := url.ParseQuery(u.RawQuery)
    fmt.Println(m)
    fmt.Println(m["k"][0])
}


결과

postgres
user:pass
user
pass
host.com:5432
host.com
5432
/path
f
k=v
map[k:[v]]
v

출처 : https://gobyexample.com/url-parsing
| |





      1 page / 6 page
번 호 카테고리 제 목 이름 조회수
179 golang golang , ... 바다아이 1836
178 golang golang , map . 바다아이 1419
177 golang Golang (, , data ) , ... 바다아이 1488
176 golang golang sort ... 바다아이 1727
175 golang golang html.EscapeString html.UnescapeString input value ... 바다아이 1819
174 golang golang go.mod go.sum . GOPATH SRC not module, 1.16 . 바다아이 5126
173 golang go 1.16 ... is not in GOROOT.. GOPATH .... . 바다아이 6028
172 golang , String Formatting 바다아이 7670
171 golang rand.Intn , random, , . 바다아이 7135
170 golang golang ... 바다아이 10267
169 golang golang gopath, goroot .. golang 바다아이 7778
168 golang golang ... Force download file example 바다아이 9593
167 golang golang , , cpu, memory, disk 바다아이 10867
166 golang golang , ... GOOS, GOARCH 바다아이 8622
165 golang golang checkbox ... 바다아이 8384
164 golang golang , , http .... 바다아이 8150
163 golang golang nil , nil , nil ... 바다아이 8497
162 golang 2 golang, go , .... golang .... 바다아이 11386
161 golang golang postgresql, mysql, mariadb ... ` Grave () .. .. 바다아이 8697
160 golang golang postgresql mysql, mariadb scan , null .. 바다아이 8834
159 golang golang , iconv 바다아이 11636
158 golang golang quote escape, unquote 바다아이 9085
157 golang golang , http errorLog , , ... 바다아이 9160
156 golang golang interface , 바다아이 8596
155 golang golang struct .... 바다아이 9340
154 golang golang map map , 바다아이 8800
153 golang golang map .... .... 바다아이 8324
152 golang golang slice copy 바다아이 8456
151 golang golang goto 바다아이 9340
150 golang golang slice sort , int, string, float64 바다아이 8810
| |









Copyright ⓒ 2001.12. bada-ie.com. All rights reserved.
이 사이트는 리눅스에서 firefox 기준으로 작성되었습니다. 기타 브라우저에서는 다르게 보일 수 있습니다.
[ Ubuntu + GoLang + PostgreSQL + Mariadb ]
서버위치 : 오라클 클라우드 춘천  실행시간 : 0.28002
to webmaster... gogo sea. gogo sea.