美文网首页PowerBI
PowerQuery递归

PowerQuery递归

作者: 袁雷 | 来源:发表于2016-10-24 19:55 被阅读46次
    递归简介

    用递归思维将 "abcdefg" 转换成 "a-b-c-d-e-f-g"

    let
        fx = (n) => if Text.Length(n) <= 1 then  n  else @fx(Text.Start(n,Text.Length(n)-1))&"-"&Text.Middle(n,Text.Length(n)-1,1) 
    in
        fx("adfg")
    
    

    相关文章

      网友评论

        本文标题:PowerQuery递归

        本文链接:https://www.haomeiwen.com/subject/tniluttx.html