VirtualPathUtility.RemoveTrailingSlash Method
.NET Framework 3.0
Removes a trailing slash mark (/) from a virtual path.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public static String RemoveTrailingSlash ( String virtualPath )
public static function RemoveTrailingSlash ( virtualPath : String ) : String
Not applicable.
Parameters
- virtualPath
The virtual path to remove any trailing slash mark from.
Return Value
A virtual path without a trailing slash mark, if the virtual path is not already the root directory ("/"); otherwise, a null reference (Nothing in Visual Basic).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 a null reference (Nothing in Visual Basic) or an empty string (""), the RemoveTrailingSlash method returns a null reference (Nothing in Visual Basic).
Community Additions
ADD
Show: