You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following example shows how to use `parseUri` to extract components from an existing URI, modify them, and then use `buildUri` to reconstruct a new URI:
194
192
195
193
```bicep
@@ -212,19 +210,6 @@ The output from the preceding example is:
var newUri = buildUri(parsedUri.scheme, parsedUri.host, newPath, newQuery, parsedUri.fragment)
223
-
224
-
output originalHost string = parsedUri.host
225
-
output newUri string = newUri
226
-
```
227
-
228
213
## concat
229
214
230
215
`concat(arg1, arg2, arg3, ...)`
@@ -1039,8 +1024,6 @@ The output from the preceding example with the default values is:
1039
1024
| fragment | String |`#section`|
1040
1025
| isAbsolute | Bool |`true`|
1041
1026
1042
-
### Additional Example: Combining with `uri`
1043
-
1044
1027
The following example shows how to use `parseUri` to extract the host and scheme, then reconstruct a new URI with a different path using the `uri` function:
0 commit comments