ParserBaseParseWithReplaceAll Method
|
Alterian Email Manager 6.2.3 SDK Help File
Parses content based on the pattern and replaces all matches with string provided
Namespace:
DMLibraryAssembly:
DMLibrary (in DMLibrary.dll) Version: 1.0.6340.17420
Syntaxpublic virtual string ParseWithReplaceAll(
string content,
string replaceWith,
string pattern
)
Public Overridable Function ParseWithReplaceAll (
content As String,
replaceWith As String,
pattern As String
) As String
public:
virtual String^ ParseWithReplaceAll(
String^ content,
String^ replaceWith,
String^ pattern
)
abstract ParseWithReplaceAll :
content : string *
replaceWith : string *
pattern : string -> string
override ParseWithReplaceAll :
content : string *
replaceWith : string *
pattern : string -> string
function ParseWithReplaceAll(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