Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Strings::Right Method (String^, Int32)

 

Returns a string containing a specified number of characters from the right side of a string.

Namespace:   Microsoft.VisualBasic
Assembly:  Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)

public:
static String^ Right(
	String^ str,
	int Length
)

Parameters

str
Type: System::String^

Required. String expression from which the rightmost characters are returned.

Length
Type: System::Int32

Required. Integer. Numeric expression indicating how many characters to return. If 0, a zero-length string ("") is returned. If greater than or equal to the number of characters in str, the entire string is returned.

Return Value

Type: System::String^

Returns a string containing a specified number of characters from the right side of a string.

Exception Condition
ArgumentException

Length < 0.

To determine the number of characters in str, use the Len function. If used in a Windows Form, or any other class that has a Right property, you must fully qualify the function with Microsoft.VisualBasic.Strings.Right.

System_CAPS_noteNote

The RightB function in earlier versions of Visual Basic returns a string in bytes, rather than characters. It is used primarily for converting strings in double-byte character set (DBCS) applications. All current Visual Basic strings are in Unicode, and RightB is no longer supported.

This example demonstrates the use of the Right function to return a substring of a given String. In a class that has a Right property, it may be necessary to fully qualify the Right function.

Dim TestString As String = "Hello World!"
' Returns "World!".
Dim subString As String = Right(TestString, 6)

.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Return to top
Show:
© 2017 Microsoft