VirtualPathUtility.RemoveTrailingSlash(String) Method
Definition
Removes a trailing slash mark (/) from a virtual path.
public:
static System::String ^ RemoveTrailingSlash(System::String ^ virtualPath);
public static string RemoveTrailingSlash (string virtualPath);
static member RemoveTrailingSlash : string -> string
Public Shared Function RemoveTrailingSlash (virtualPath As String) As String
Parameters
- virtualPath
- String
The virtual path to remove any trailing slash mark from.
Returns
A virtual path without a trailing slash mark, if the virtual path is not already the root directory ("/"); otherwise, null
.
Remarks
The RemoveTrailingSlash method removes a slash mark (/) from the end of the virtual path. If the virtual path is already the root directory ("/"
), no action is taken. If the virtual path is null
or an empty string (""), the RemoveTrailingSlash method returns null
.