I am trying to pull out word “uiPath/UiPath/uipath/ui path” value from a sentence/paragraph.
for ex: “I am completing the UiPath course in Advanced Certification. Hello world was my first program of uipath. Ui Path is a tool used in RPA development.”
How can I able to extract UiPath word (in every format) from above paragraph and count how many times Uipath appears.
Hi, you could try Regex.Matches(YourTextVar, “UiPath”, RegexOptions.Multiline).Count and do this for every Version and then take the sum. Maybe someone knows a direct way.
I would also like to include that this “result.count().tostring” is able run in individual sequence workflow,
but when I am unable to call “count function on Matches result” in a workflow which is invoked to other main workflow .
Could you please explain me the reason behind this. It will be a great help.