UiPath - Extract specific text from string | Split | Regex | Substring | Indexof | Trim

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 ม.ค. 2025

ความคิดเห็น • 20

  • @mihaeladraghici7108
    @mihaeladraghici7108 2 ปีที่แล้ว

    Great lesson ! I learnt new things. Thank you so much.

  • @jagadeshk2759
    @jagadeshk2759 3 ปีที่แล้ว +1

    Nice...Awesome explanation with 3 different methods. I like the Regex method. Expect separate videos on Regex methods.👍

  • @vijaypathawar
    @vijaypathawar ปีที่แล้ว

    Excellent video on regex

  • @gopinath-fb9ze
    @gopinath-fb9ze 3 ปีที่แล้ว

    Nice Explanation...Thank you

  • @aditya10989
    @aditya10989 3 ปีที่แล้ว

    Nice explanation.great job

    • @automationinsights6722
      @automationinsights6722  3 ปีที่แล้ว

      Thank you 🙂

    • @aditya10989
      @aditya10989 3 ปีที่แล้ว

      @@automationinsights6722 hi I have one doubt. I have one string
      Eg "abc Def get 88888 abc Def get 9999"
      Now I want value 9999 how can I get this using substring

    • @automationinsights6722
      @automationinsights6722  3 ปีที่แล้ว

      Please try this,
      strText - "abc Def get 88888 abc Def get 9999"
      strText.Substring(strText.LastIndexOf("get ")+4)
      it will get the last occurrence of text "get " and we add plus 4 to find the index of first position after that, and because we didn't give length it will return all the characters after the index.

  • @rasipogulabhaskar9858
    @rasipogulabhaskar9858 2 ปีที่แล้ว

    Superb..

  • @ksenthilrajapt
    @ksenthilrajapt 3 ปีที่แล้ว

    Good explanation

  • @rvcookingstories
    @rvcookingstories 3 ปีที่แล้ว

    Sema da🔥, do more videos

  • @aditya10989
    @aditya10989 3 ปีที่แล้ว

    Please Create some more videos on regex

  • @anelisabolosha9934
    @anelisabolosha9934 2 ปีที่แล้ว

    in the substring method what if the text is changing and you don't know the exact length, how do you do it?

  • @ganeshdhane2574
    @ganeshdhane2574 2 ปีที่แล้ว

    How to extract email in use string manipulation ?

    • @automationinsights6722
      @automationinsights6722  2 ปีที่แล้ว

      Hi you can use regular expression to get the email in a string...

  • @thinkeasydoeasy4548
    @thinkeasydoeasy4548 2 ปีที่แล้ว

    hi dear I am wondering how to get first 5 words on this string? which code?