 | StringUtilsExpandUrls Method |
Expands links into HTML hyperlinks inside of text or HTML.
Namespace:
Koden.Utils
Assembly:
Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntaxpublic static string ExpandUrls(
string text,
string target = null,
bool parseFormattedLinks = false
)
Public Shared Function ExpandUrls (
text As String,
Optional target As String = Nothing,
Optional parseFormattedLinks As Boolean = false
) As String
public:
static String^ ExpandUrls(
String^ text,
String^ target = nullptr,
bool parseFormattedLinks = false
)
static member ExpandUrls :
text : string *
?target : string *
?parseFormattedLinks : bool
(* Defaults:
let _target = defaultArg target null
let _parseFormattedLinks = defaultArg parseFormattedLinks false
*)
-> string
Parameters
- text
- Type: SystemString
The text to expand - target (Optional)
- Type: SystemString
Target frame where links are displayed - parseFormattedLinks (Optional)
- Type: SystemBoolean
Allows parsing of links in the following format [text|www.site.com]
Return Value
Type:
String[Missing <returns> documentation for "M:Koden.Utils.StringUtils.ExpandUrls(System.String,System.String,System.Boolean)"]
See Also