GeneratorUtilsStripFromCLRFs Method |
Strips the specified string from CRLFs and optionally converts the string's double quotes and limits the string's length to 2000 chars
Namespace:
SD.LLBLGen.Pro.GeneratorCore
Assembly:
SD.LLBLGen.Pro.GeneratorCore (in SD.LLBLGen.Pro.GeneratorCore.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax public static string StripFromCLRFs(
string toStrip,
bool convertDoubleQuotes,
bool limitLength
)
Public Shared Function StripFromCLRFs (
toStrip As String,
convertDoubleQuotes As Boolean,
limitLength As Boolean
) As String
Parameters
- toStrip
- Type: SystemString
To strip. - convertDoubleQuotes
- Type: SystemBoolean
if set to true it will convert " to '. - limitLength
- Type: SystemBoolean
if set to true it will limit the string's length to 2000 chars.
Return Value
Type:
Stringthe processed variant of toStrip
See Also