I got this case:
The name of the document tells me the type of document and based on that i take decisions on my workflow. The naming structure is different for each type of document.
I got 6 types of documents and I need each one of them take a different routing decission. The last branch (7) is if you do not fall into any of the above patterns I move the document to a route for manual review.
From the 6 possible documents 5 of them present no problem to me because there is something really clear inside of the name that let me know the type of the document.
The one is gaving me trouble is this syntax:
Permit Name_Name of the store_CR of the Store
Right example (Uso de Suelo_Universidad_50UNI)
Wrong that doesnt fit the other criteria (Visto Bueno Operatividad Proteccion Civil_2015__Zaragoza_50FCJ)
Everything that doesnt fit this exact pattern or the other ones got to go to the last branch.
I just cant find any regular expression that serves the route decision to work as i need.
Anyone have any ideas?