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 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类