This site has moved.
Turns spreadsheet's rows of data into Javascript objects to make them easier to use.
Project Key: MTeYmpfWgqPbiBkVHnpgnM9kh30YExdAc
function camelStringExample(){
var aString = '1 This String ';
Logger.log(Objapp.camelString(aString));
}
More examples are available here:
https://sites.google.com/site/scriptsexamples/custom-methods/gs-objects/examples
First Release
Changes an object like e.parameter into a 2D array useful in writting to a spreadsheet using the .setValues method
Type
String[][]
Description
[[value, value, ...], ...]
Changes a range String[][] often returned from .getValues() into an Object[] with key value pairs. The first element in the String[][] is used to create keys
Name
range
Type
String[][]
Description
[[key, key, ...],[value, value, ...]]
Type
Object[]
Description
[{key:value, ...}, ...]
Combines a String[] and String[][] into an Object[] with key value pairs
Type
Objec[]
Description
[{key:value, ...}, ...]
Converts a String[] to camelCase, Example: "First Name" -> "firstName"
Name
headers
Type
String[]
Description
[string, string, ...]
Type
String[]
Description
[string, string, ...]
Converts a String to camelCase, Example: "First Name" -> "firstName"
Name
header
Type
String
Description
String
Type
String
Description
camelCase