Size: a a a

2020 October 10

PV

P V in Uipath RPA
SNEHAL KAPSE
I have 1 Main Process in which there are almost 90 subprocesses Involved with some parts changing only... In which some process running on daily basis with ... Frequency & some processes runs on weekly basis..

So How I can Build the Framework on this.

Bcoz some resulable component selectors which is changing frequently, So I don't want to create 90 Processes for this..
Use if when condition is met perform normal part or else other part.
If you are taking decisions based on some screen, you can use element exist before if.
Also for running the process on daily or weekly basis you can use Excel and apply formula on cells. Set flag Yes or No.
Then read the flag in automation and execute process likewise
источник

PV

P V in Uipath RPA
Are you able to see Robot in Robot tab of Orchestrator?
источник

kv

kumar v in Uipath RPA
Hey guys how to convert "24 September 2020" to DDMMYYYY
источник

PV

P V in Uipath RPA
try this convert.toDatetime("24. September 2020").tostring("ddMMyyyy)
источник

PV

P V in Uipath RPA
Let me know if this works or not or what error it throws
источник

PV

P V in Uipath RPA
There is other method as well its bit complex
источник

.

. in Uipath RPA
In data scraping if website contains only 7 pages of information with no next option how to collect all the 7 pages extracted data?
источник

.

. in Uipath RPA
How to select?
источник

kv

kumar v in Uipath RPA
@PRVPICS The below one worked for me. I will the one u sent and let you know. thanks.
источник

kv

kumar v in Uipath RPA
источник

SK

SNEHAL KAPSE in Uipath RPA
P V
Use if when condition is met perform normal part or else other part.
If you are taking decisions based on some screen, you can use element exist before if.
Also for running the process on daily or weekly basis you can use Excel and apply formula on cells. Set flag Yes or No.
Then read the flag in automation and execute process likewise
I got 1 solution to create Library for reusable parts so it will help to save time.. BTW thanks for This 1
источник
2020 October 11

PV

P V in Uipath RPA
SNEHAL KAPSE
I got 1 solution to create Library for reusable parts so it will help to save time.. BTW thanks for This 1
Nice
источник

Bu

Bahar uddin in Uipath RPA
Hi everyone

I want to ask about REGEX
Example:
@rpa @uipath @indonesia


How to take the FIRST word started with @

I only can take all words started with @
"(@\w+.)"
источник

Bu

Bahar uddin in Uipath RPA
I want to take @rpa
источник

A

Aditya in Uipath RPA
Bahar uddin
Hi everyone

I want to ask about REGEX
Example:
@rpa @uipath @indonesia


How to take the FIRST word started with @

I only can take all words started with @
"(@\w+.)"
^[\@\w]+
источник

Bu

Bahar uddin in Uipath RPA
Bahar uddin
Hi everyone

I want to ask about REGEX
Example:
@rpa @uipath @indonesia


How to take the FIRST word started with @

I only can take all words started with @
"(@\w+.)"
the full sentence
please join @rpa @uipath @indonesia you will...@uipath @indonesia you will...
replace to
please join @rpa you will...
источник

Bu

Bahar uddin in Uipath RPA
источник

NA

Nittin Arora in Uipath RPA
Anyone looking for pega lsa architect role?
источник

DM

Daniil Morozenko in Uipath RPA
Bahar uddin
Hi everyone

I want to ask about REGEX
Example:
@rpa @uipath @indonesia


How to take the FIRST word started with @

I only can take all words started with @
"(@\w+.)"
take all, and than use only first, like matchesRes(0).tostring
источник

DM

Daniil Morozenko in Uipath RPA
Aditya
^[\@\w]+
this take first word in a row started from @ or any word
источник