How can I save this input string in the given input box on UiPath?

Hi all,


How can copy this text for string manipulation as there are different string for every different file I open? It will be best if I can extract the portion after “/erp/prod/” from “/erp/prod/GFS/out/DBS/PSASINT3” for every file

@attkren1 is it Pdf file?
Read through pdf activities and then apply regex for it

Or
If it is browser then use “Get text” activity to read it.

@attkren1

You can use Get Text Activity and then you can save that element text

Hope this may help you

Thanks,
Srini

Hi @attkren1

Use Get Text or CV Get text activity

Hi @attkren1

If it is an image
Use get text with ocr activity or cv get text activity
if not
Use get text activity.

@attkren1

Hi ,

I hope this will help you

Use get text activity to get the input data and store it in a variable .

Assign:
Left side: extractedText
Right side: filePath.Split({“/erp/prod/”}, StringSplitOptions.None)(1)

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.