Queues to contains flow condition

Hi Community,

i need some suggestion. i had an 10 Organizations input and each organisation having xx teams. so now the input i already pushed to queues.

now i need to get 1-1 queue and process.

so now my question is how the flow condition will be working. in flow decision condition we need to write

Ex : in queues i had orgnaization,Teams details in queues ..

can you please suggest the flow.

Hello @chaitanyaKumar,

What exactly you want to do can you explain in detail. Do you want to apply filter while fetching queue items or you want to apply some conditions on queue items?

Regards,
Bharat

Hi Bharat,

in Queues i already add organization details .

Queue will be like this : https://github.aaaaa.com/orgs/MSS/teams/mss

if MSS there the condition need to be true. like that we have 10 other Organization details like MSS..

once the condition true i will do other process .. if not there (Flase ) i need to check for other flow kind.

i need the flow condition where the item gets from queues.

Hope i was cleared my query.

I am unable to access that queue link.

No No the URL which is showing its just an example the

https://www.aaaaa.com/orgs/MSS/teams/mss.

the whole URL will be in queue. now i need the flow condition if MSS there in the URL the condition need to true.

Hi @chaitanyaKumar

Use the below syntax in Flow Decision:
System.Text.RegularExpressions.Regex.IsMatch("https://www.aaaaa.com/orgs/MSS/teams/mss.","[A-Z]+")

If True, continue with further process, if False do the required process.

Hope it helps!!

You can store the url data in a variable named url and in condition you can apply url.Contains(“MSS”) this will go into true branch if url contains MSS.

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