StringExtensions.RightA(this string value, int? length) Method
.NET Standard 2.x
Temporarily converts a string from Unicode to DBCS based on the current locale, then returns the specified number of bytes from the end of the string.
Namespace: PowerScript.Bridge
Assembly: PowerScript.Bridge.dll
Syntax
public static string RightA(this string value, int? length);
Parameters
value
System.String
The string from which you want characters returned.
length
System.Int32
An int whose value is the number of bytes you want returned from the right end of string.
Returns
System.String
Returns the rightmost n characters in string if it succeeds and the empty string ("") if an error occurs. If any argument's value is null
, RightA
returns null
. If length is greater than or equal to the length of the string, RightA
returns the entire string. It does not add spaces to make the return value's length equal to length.
Examples
Coming soon.
Applies to
.NET Standard
2.x