VirtualPathUtility.RemoveTrailingSlash(String) Method

Definition

Removes a trailing slash mark (/) from a virtual path.

public static string RemoveTrailingSlash (string virtualPath);

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.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also