Text functions in Make.com split, contains

Поделиться
HTML-код
  • Опубликовано: 17 ноя 2024

Комментарии • 8

  • @NatanaelAFS
    @NatanaelAFS 3 месяца назад +1

    Hello!! Thanks by the video!
    I want to separate some strings, but use just one string. For example, i want to transform brasil_saopaulo in brasil saopaulo. How can I do that? Replace?

    • @BeyondAutomationWithAlex
      @BeyondAutomationWithAlex  3 месяца назад

      replace({{TEXT}};_;{{space}}) add this to your field and replace {{TEXT}} with your variable

    • @NatanaelAFS
      @NatanaelAFS 3 месяца назад

      @@BeyondAutomationWithAlex tks!! i will try and i come here when it's right

  • @jesusgireaud
    @jesusgireaud 4 месяца назад +1

    Hi there! I want to split Names into FName and LName fields. Users tend to type fullname in a First Name Field, I want to split it in order to send it to my CRM in the right fields when mapping. How Can I do it? Thank you so much!

    • @BeyondAutomationWithAlex
      @BeyondAutomationWithAlex  4 месяца назад +1

      you can use split() and get() or first() or last()
      Say:
      first(split(John Snow;space)) = John
      last(split(John Snow;space)) = Snow
      OR
      get(split(John Snow;space),1) = John
      get(split(John Snow;space),2) = Snow

    • @jesusgireaud
      @jesusgireaud 4 месяца назад

      @@BeyondAutomationWithAlex thank you so much for this!!!

  • @ryana2952
    @ryana2952 4 месяца назад

    The best part about split text is how it takes you 12 fuckimg hours to figure out how to do anything with it after that