 | StringUtilsTextAbstract Method |
Returns an abstract of the provided text by returning up to Length characters
of a text string. If the text is truncated a ... is appended.
Namespace:
Koden.Utils
Assembly:
Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntaxpublic static string TextAbstract(
string text,
int length
)
Public Shared Function TextAbstract (
text As String,
length As Integer
) As String
public:
static String^ TextAbstract(
String^ text,
int length
)
static member TextAbstract :
text : string *
length : int -> string
Parameters
- text
- Type: SystemString
Text to abstract - length
- Type: SystemInt32
Number of characters to abstract to
Return Value
Type:
Stringstring
See Also