Package Management Using UiPath Orchestrator API | UiPath Orchestrator API Series

Поделиться
HTML-код
  • Опубликовано: 17 окт 2024
  • Welcome to our channel!
    In this video, we described how to manage packages using UiPath Orchestrator API.
    Authentication:- • UiPath Orchestrator AP...
    ➖〰➖〰➖〰➖〰➖〰➖〰➖〰➖〰➖〰➖
    🎬Important Links:
    🔥 Visit Channel: / @robobix
    🔥 To Subscribe: / @robobix
    🔥 UiPath Modern Activity Tutorials: shorturl.at/rAI16
    🔥 Open AI: • Chatgpt Integration Wi...
    🔥 Google Workspace: • Chatgpt Integration Wi...
    🔥 AI Center: • What is AI Center in U...
    🔥 LINQ Tutorials: • LINQ - Uipath Linq Fil...
    🔥 UiPath Tutorials: • LINQ - Uipath Linq Fil...
    🔥 VBA Tutorials: • LINQ - Uipath Linq Fil...
    ➖〰➖〰➖〰➖〰➖〰➖〰➖〰➖〰➖〰➖
    😊 Hope you found this video useful. Please like, share the video, and subscribe to our channel. This will motivate us to create more good content. Thanks!
    ➖〰➖〰➖〰➖〰➖〰➖〰➖〰➖〰➖〰➖
    -------------------------------SOCIAL-------------------------------
    🛠️ If you have any doubts or queries, drop us an email: query.coderslobby@gmail.com
    👥Facebook: CodersLobby
    📸Instagram: / coderslobby
    📱WhatsApp: 8558919766
    ----------------------------------------------------------------------
    #uipath #rpa #orchestrator #API #uipathorchestratorpackages #uipathtutorial #OrchestratorAPI #uipathapi #uipathorchestratorfolderautomation #uipathapiautomationtutorial

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

  • @suraj_singh321
    @suraj_singh321 9 месяцев назад

    Hi sir how can we use regex in filteration of particular column in excel uipath dout

    • @robobix
      @robobix  9 месяцев назад

      may I know your requirements what exactly requirements, basically we can use System.RegularExpressions.Regex.Matches for regex filtration, now sure about your requirement.

    • @suraj_singh321
      @suraj_singh321 9 месяцев назад

      @@robobix i had one excel column with different formats need to filter that through regex ?

    • @robobix
      @robobix  9 месяцев назад +1

      @@suraj_singh321 you can use this expression dtInput.AsEnumerable().Where(Function(row) System.Text.RegularExpressions.Regex.IsMatch(row("ColumnName").ToString, "YourRegexPattern")).CopyToDataTable()