[#BloombergLP-bdlde-Base64IgnoreMode-toAscii] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlde.adoc[bdlde]::xref:BloombergLP/bdlde/Base64IgnoreMode.adoc[Base64IgnoreMode]::toAscii :relfileprefix: ../../../ :mrdocs: Return the string representation of the specified enumeration `value`. == Synopsis Declared in `<bdlde_base64ignoremode.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static char const* toAscii(xref:BloombergLP/bdlde/Base64IgnoreMode/Enum.adoc[Enum] value); ---- == Description Return the non‐modifiable string representation corresponding to the specified enumeration `value`, if it exists, and a unique (error) string otherwise. The string representation of `value` matches the name of its corresponding base enumeration with the "e_" prefix elided. For example: ` bsl::cout << Base64IgnoreMode::toAscii( Base64IgnoreMode::e_IGNORE_NONE); ` will print the following on standard output: ` IGNORE_NONE ` Note that specifying a `value` that does not match any of the enumerators will result in a string representation that is distinct from any of those corresponding to the enumerators, but is otherwise unspecified. == Return Value the non‐modifiable string representation of `value` == Parameters [cols="1,4"] |=== | Name| Description | *value* | enumeration value to convert |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#