From 298b5c90e41ab289bc93f55d36d830bd7451c186 Mon Sep 17 00:00:00 2001 From: Ryan Jones Date: Fri, 29 May 2015 15:32:11 -0700 Subject: [PATCH] adding string examples --- toLowerSample.json | 13 +++++++++++++ toUpperSample.json | 13 +++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 toLowerSample.json create mode 100644 toUpperSample.json diff --git a/toLowerSample.json b/toLowerSample.json new file mode 100644 index 0000000..89f8a77 --- /dev/null +++ b/toLowerSample.json @@ -0,0 +1,13 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": {}, + "variables": {}, + "resources": [], + "outputs": { + "exampleOutput": { + "value": "[toLower('StringToLower')]", + "type" : "string" + } + } +} \ No newline at end of file diff --git a/toUpperSample.json b/toUpperSample.json new file mode 100644 index 0000000..a4060a5 --- /dev/null +++ b/toUpperSample.json @@ -0,0 +1,13 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": {}, + "variables": {}, + "resources": [], + "outputs": { + "exampleOutput": { + "value": "[toUpper('StringToUpper')]", + "type" : "string" + } + } +} \ No newline at end of file