Due to recent updates, all users are required to create an Altair One account to login to the RapidMiner community. Click the Register button to create your account using the same email that you have previously used to login to the RapidMiner community. This will ensure that any previously created content will be synced to your Altair One account. Once you login, you will be asked to provide a username that identifies you to other Community users. Email us at Community with questions.
[Solved] Encode String as Base64
JEdward
RapidMiner Certified Analyst, RapidMiner Certified Expert, Member Posts: 578 Unicorn
Hello,
I'd like to take an attribute value and encode it as base64, does anyone have any suggestions on how to do this using the Execute Script or another operator?
I'm struggling.
Thanks,
JH
I'd like to take an attribute value and encode it as base64, does anyone have any suggestions on how to do this using the Execute Script or another operator?
I'm struggling.
Thanks,
JH
0
Best Answer
-
JEdward RapidMiner Certified Analyst, RapidMiner Certified Expert, Member Posts: 578 UnicornSolved it! For anyone wanting to do the same, you can use the following code in the Execute Script operator.
ExampleSet eSet = operator.getInput(ExampleSet.class);
for (Example example : eSet) {
def s = example["Attribute Value"]
String encoded = s.bytes.encodeBase64().toString()
example["Attribute Value"] = encoded
}
return eSet;1