douzengjian1535 2015-09-23 06:39 采纳率: 100%
浏览 16
已采纳

在[]字符串中分割值

I am a novice in Go programming language. I am writing a code to input from cli for client and pass the values to server for processing. both client and server are residing locally.

code :

package main

import (
    "flag"
    "fmt"
    "strings"
)

func main() {

    text := gettext()
    fmt.Println(text)

    result := strings.Split(text, " ")

    for i := range result {

        fmt.Println(result[i])
    }

}

func gettext() []string {

    flag.Parse()
    text := flag.Args()

    if len(text) < 1 {

        fmt.Println("Please enter radius")

    }

    return text
}

when i run from command line its is giving me following error :cannot use text (type []string) as type string in argument to strings.Split

Basically i want to separately print values from []string .

Can you please let me know how to do it. I tried using strings.split.

Thanks.

  • 写回答

2条回答 默认 最新

  • dqf35839 2015-09-23 06:47
    关注

    You don't need to separate values by " "
    The values already separated and your function gettext returns a slice of parameters.
    Try this example:

    package main
    
    import (
        "flag"
        "fmt"
    )
    
    func main() {
        text := gettext()
        fmt.Println(text)
    
        for i := range text {
            fmt.Println(text[i])
        }
    }
    
    func gettext() []string {
        flag.Parse()
        text := flag.Args()
    
        if len(text) < 1 {
            fmt.Println("Please enter radius")
        }
    
        return text
    }
    

    From the documentation:

    func Args() []string
    Args returns the non-flag command-line arguments.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 找一个网络防御专家,外包的
  • ¥100 能不能让两张不同的图片md5值一样,(有尝)
  • ¥15 informer代码训练自己的数据集,改参数怎么改
  • ¥15 请看一下,学校实验要求,我需要具体代码
  • ¥50 pc微信3.6.0.18不能登陆 有偿解决问题
  • ¥20 MATLAB绘制两隐函数曲面的交线
  • ¥15 求TYPCE母转母转接头24PIN线路板图
  • ¥100 国外网络搭建,有偿交流
  • ¥15 高价求中通快递查询接口
  • ¥15 解决一个加好友限制问题 或者有好的方案