doucan1979 2013-09-28 08:45
浏览 277
已采纳

用golang解析Perl正则表达式

http://play.golang.org/p/GM0SWo0qGs

This is my code and playground.

func insert_comma(input_num int) string {
    temp_str := strconv.Itoa(input_num)
    var validID = regexp.MustCompile(`\B(?=(\d{3})+$)`)
    return validID.ReplaceAllString(temp_str, ",")
}

 func main() {
    fmt.Println(insert_comma(1000000000))
 }

Basically, my desired input is 1,000,000,000. And the regular expression works in Javascript but I do not know how to make this Perl regex work in Go. I would greatly appreciate it. Thanks,

  • 写回答

1条回答 默认 最新

  • dougong2005 2013-09-28 11:00
    关注

    Since lookahead assertion seems to be not supported, I'm providing you a different algorithm with no regexp:

    Perl code:

    sub insert_comma {
        my $x=shift;
        my $l=length($x);
        for (my $i=$l%3==0?3:$l%3;$i<$l;$i+=3) {
            substr($x,$i++,0)=',';
        }
        return $x;
    }
    print insert_comma(1000000000);
    

    Go code: Disclaimer: I have zero experience with Go, so bear with me if I have errors and feel free to edit my post!

    func insert_comma(input_num int) string {
        temp_str := strconv.Itoa(input_num)
        var result []string
        i := len(temp_str)%3;
        if i == 0 { i = 3 }
        for index,element := range strings.Split(temp_str, "") {
            if i == index {
                result = append(result, ",");
                i += 3;
            }
            result = append(result, element)
        }
        return strings.Join(result, "")
    }
    
    func main() {
        fmt.Println(insert_comma(1000000000))
    }
    

    http://play.golang.org/p/7pvo7-3G-s

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 用matlab 设计一个不动点迭代法求解非线性方程组的代码
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 oracle集群安装出bug
  • ¥15 关于#python#的问题:自动化测试