ParserBaseParseWithReplaceOne Method
|
Alterian Email Manager 6.2.3 SDK Help File
Parses content based on the pattern and replaces only first match with string provided
Namespace:
DMLibraryAssembly:
DMLibrary (in DMLibrary.dll) Version: 1.0.6340.17420
Syntaxpublic virtual string ParseWithReplaceOne(
string content,
string replaceWith,
string pattern
)
Public Overridable Function ParseWithReplaceOne (
content As String,
replaceWith As String,
pattern As String
) As String
public:
virtual String^ ParseWithReplaceOne(
String^ content,
String^ replaceWith,
String^ pattern
)
abstract ParseWithReplaceOne :
content : string *
replaceWith : string *
pattern : string -> string
override ParseWithReplaceOne :
content : string *
replaceWith : string *
pattern : string -> string
function ParseWithReplaceOne(content, replaceWith, pattern);
Parameters
- content
- Type: SystemString
content to parse and replace - replaceWith
- Type: SystemString
replacement text - pattern
- Type: SystemString
parse pattern
Return Value
Type:
Stringcontent after replacement
See Also