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
`Path_ChangeExtension` returns a new string in which all occurrences of a specified `oldValye` Unicode character or String in the `source` string are replaced with another specified `newValue` Unicode character or String.
4
+
5
+
```csharp
6
+
Path_ChangeExtension (
7
+
@pathNVARCHAR (4000),
8
+
@extensionNVARCHAR (4000)
9
+
)
10
+
RETURNSNVARCHAR (4000)
11
+
```
12
+
13
+
## Parameters
14
+
15
+
-**path**: The path information to modify.
16
+
-**extension**: The new extension (with or without a leading period). Specify `null` to remove an existing extension from `path`.
0 commit comments