Skip to main content

Removing a suffix of a string

Comments

1 comment

  • Matt Graney Chief Product Officer
    Engaged
    Answer Pro
    Top Contributor

    If it's always just a single character prefix, you can use the substring handlebar in your mapping to strip it:

    {{substring id 1 id.length}}

    The above syntax takes the field "id" and returns everything but the initial character (the 0th character).

    References:
    the substring function
    using handlebars in mapping 

    1

Please sign in to leave a comment.