Home > OS >  Query regarding format of Azure Subscription id
Query regarding format of Azure Subscription id

Time:12-07

I wanted to check what all characters can be present in Subscription id of Azure Subscription. I saw documentation guid doc

CodePudding user response:

Here is the RegEx for your question

@"^(\{{0,1}([0-9a-fA-F]){8}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){12}\}{0,1})$"
  • Related