Come dividere una stringa e assegnarla alle variabili


151

In Python è possibile dividere una stringa e assegnarla a variabili:

ip, port = '127.0.0.1:5432'.split(':')

ma in Go non sembra funzionare:

ip, port := strings.Split("127.0.0.1:5432", ":")
// assignment count mismatch: 2 = 1

Domanda: come dividere una stringa e assegnare valori in un solo passaggio?


2
splittedString: = strings.Split("127.0.0.1:5432", ":")Ans: = splittedString[index]puoi accedere al valore della stringa
divisa

Risposte:


249

Due passaggi, ad esempio,

package main

import (
    "fmt"
    "strings"
)

func main() {
    s := strings.Split("127.0.0.1:5432", ":")
    ip, port := s[0], s[1]
    fmt.Println(ip, port)
}

Produzione:

127.0.0.1 5432

Un passo, ad esempio,

package main

import (
    "fmt"
    "net"
)

func main() {
    host, port, err := net.SplitHostPort("127.0.0.1:5432")
    fmt.Println(host, port, err)
}

Produzione:

127.0.0.1 5432 <nil>

Ciò divide una stringa in un elenco di stringhe, non in un elenco di caratteri.
dopatraman

4
Cosa succede se riceviamo un indirizzo IPv6?
PumpkinSeed

@PumpkinSeed l'ho appena provato, e errpurtroppo lo riprendo : too many colons in address 2001:0db8:85a3:0000:0000:8a2e:0370:7334:(
JM Janzen,

21

Poiché goè flessibile e puoi creare la tua pythondivisione di stile ...

package main

import (
    "fmt"
    "strings"
    "errors"
)

type PyString string

func main() {
    var py PyString
    py = "127.0.0.1:5432"
    ip, port , err := py.Split(":")       // Python Style
    fmt.Println(ip, port, err)
}

func (py PyString) Split(str string) ( string, string , error ) {
    s := strings.Split(string(py), str)
    if len(s) < 2 {
        return "" , "", errors.New("Minimum match not found")
    }
    return s[0] , s[1] , nil
}

1
questo è più che un po 'diverso dall'equivalente di Python. come faresti una versione con conteggio di ritorno variabile?
Groxx,

15
Mi piace Go ma non lo definirei flessibile : D
Pijusn

7

Gli indirizzi IPv6 per i campi come RemoteAddrda http.Requestsono formattati come "[:: 1]: 53343"

Quindi net.SplitHostPortfunziona alla grande:

package main

    import (
        "fmt"
        "net"
    )

    func main() {
        host1, port, err := net.SplitHostPort("127.0.0.1:5432")
        fmt.Println(host1, port, err)

        host2, port, err := net.SplitHostPort("[::1]:2345")
        fmt.Println(host2, port, err)

        host3, port, err := net.SplitHostPort("localhost:1234")
        fmt.Println(host3, port, err)
    }

L'output è:

127.0.0.1 5432 <nil>
::1 2345 <nil>
localhost 1234 <nil>

2
package main

import (
    "fmt"
    "strings"
)

func main() {
    strs := strings.Split("127.0.0.1:5432", ":")
    ip := strs[0]
    port := strs[1]
    fmt.Println(ip, port)
}

Ecco la definizione di stringhe. Spaccatura

// Split slices s into all substrings separated by sep and returns a slice of
// the substrings between those separators.
//
// If s does not contain sep and sep is not empty, Split returns a
// slice of length 1 whose only element is s.
//
// If sep is empty, Split splits after each UTF-8 sequence. If both s
// and sep are empty, Split returns an empty slice.
//
// It is equivalent to SplitN with a count of -1.
func Split(s, sep string) []string { return genSplit(s, sep, 0, -1) }

ecco un errore "./prog.go:12:17: undefined: str"
Anshu

1

Esistono diversi modi per dividere una stringa:

  1. Se vuoi renderlo temporaneo, dividi in questo modo:

_

import net package

host, port, err := net.SplitHostPort("0.0.0.1:8080")
if err != nil {
fmt.Println("Error is splitting : "+err.error());
//do you code here
}
fmt.Println(host, port)
  1. Dividi in base a struct:

    • Crea una struttura e suddividi in questo modo

_

type ServerDetail struct {
    Host       string
    Port       string
    err        error
}

ServerDetail = net.SplitHostPort("0.0.0.1:8080") //Specific for Host and Port

Ora usa nel tuo codice come ServerDetail.HosteServerDetail.Port

Se non vuoi dividere una stringa specifica, fallo in questo modo:

type ServerDetail struct {
    Host       string
    Port       string
}

ServerDetail = strings.Split([Your_String], ":") // Common split method

e usa come ServerDetail.Hoste ServerDetail.Port.

È tutto.


Il modulo struct non funziona:./prog.go:21:4: assignment mismatch: 1 variable but net.SplitHostPort returns 3 values
E. Anderson,

1

Quello che stai facendo è che stai accettando la risposta divisa in due diverse variabili e stringhe.Split () sta restituendo solo una risposta e che è un array di stringhe. è necessario memorizzarlo in una singola variabile e quindi è possibile estrarre la parte di stringa recuperando il valore di indice di un array.

esempio :

 var hostAndPort string
    hostAndPort = "127.0.0.1:8080"
    sArray := strings.Split(hostAndPort, ":")
    fmt.Println("host : " + sArray[0])
    fmt.Println("port : " + sArray[1])

1

Come nota a margine, puoi includere i separatori mentre dividi la stringa in Vai. Per fare ciò, utilizzare strings.SplitAftercome nell'esempio seguente.

package main

import (
    "fmt"
    "strings"
)

func main() {
    fmt.Printf("%q\n", strings.SplitAfter("z,o,r,r,o", ","))
}

0

Golang non supporta il decompressione implicita di una porzione (diversamente da Python) e questa è la ragione per cui non funzionerebbe. Come gli esempi sopra riportati, dovremmo risolvere il problema.

Una nota a margine:

Il disimballaggio implicito accade per le funzioni variadiche in corso:

func varParamFunc(params ...int) {

}

varParamFunc(slice1...)

0
**In this function you can able to split the function by golang using array of strings**

func SplitCmdArguments(args []string) map[string]string {
    m := make(map[string]string)
    for _, v := range args {
        strs := strings.Split(v, "=")
        if len(strs) == 2 {
            m[strs[0]] = strs[1]
        } else {
            log.Println("not proper arguments", strs)
        }
    }
    return m
}
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.