Modules

filter

 

Objects/Functions

module (N/https)

SuiteScript 2.0

SecureString.appendString(options)

{SecureString}.appendString({input: {string*},inputEncoding: {https.Encoding*}})

N/https Module
SecureString.appendString()
Method Description: Appends a string to an https.SecureString.
Returns: https.SecureString
Supported Script Types: Server scripts For more information, see SuiteScript 2.0 Script Types.
Governance: None
Module: N/https Module
Since: 2015.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=SecureString.appendString(options)

Example:

// Code Example 1
// Add additional code
//...
var regularString1 = "myString1";

var secureString1 = https.createSecureString({
input: "myString2"
});
var mixedString = secureString1.appendString({
input: regularString1,
encoding: https.Encoding.HEX
});
//...
// Add additional code

//SOURCE: https://system.netsuite.com/app/help/helpcenter.nl?fid=section_460942016600.html