... the filename appended. Because of MS Windows 11 limitations (any MS OS really), you need to ensure that long hyphens (#151) and some other funny characters are replaced out as the OS won't allow the file ...
... with this many spaces using leftpad
v_GeneratedList = leftpad(" ", v_CheckDaysAhead).replaceAll(" ",",");
//
// convert string to a list
l_GeneratedList = v_GeneratedList.toList();
//
// initialize ...
... // convert to xml and replace root nodes
x_Params = m_Params.toXML();
x_Params = x_Params.toString().replaceFirst("","");
x_Params = x_Params.toString().replaceFirst("","");
info x_Params;
//
// s ...
... = m_Offset.get(input.Calendar_Day_Select.replaceAll("[^0-9]",""));
//
// if a number was selected, ie. not chevrons
if(v_DateOffset >= 0)
{
//
// set selected date field value
input.Selected_Date ...
... that in the following regex, and if using Zoho Creator, you need to replace the double-backslash with a single backslash:
v_Test1 = 12.300;
info v_Test1.toString().replaceAll("(\\.\\d*?[1-9])0+$", ...
... replacements
m_HtmlEntity = Map();
m_HtmlEntity.put("&","&");
m_HtmlEntity.put(" "," ");
//
// loop through each of the above replacing where found
for each v_HtmlKey in m_HtmlEntity.keys()
{
v_StringToDecode ...
What?
This is an article documenting how to parse the notification from eBay and using it to create an order in Shopify.
Why?
Previously, we would receive an eBay notification and create an ...
... Transfer Protocol on a Port number of your choosing:
Set for new imports to append, replace, or check if exists then insert/replace:
Schedule to repeat: Every X Hours, Every Day, Weekly, Monthly:
...
What?
An article to save time where a customer wants to click a button to generate a merged document in Writer and attach it to the CRM record.
Why?
Our use-case is that we have a client who has ...
... HTML tags:
l_TimeZones = List();
for each v_TimeZoneOption in l_TimeZoneOptions
{
v_TimeZone = v_TimeZoneOption.replaceAll("","");
// replace any commas in the value (for list conversion later ...
... in case they add a currency or tax rate and want to push a sales order immediately over.
Get Currencies
Remember to replace the v_BooksOrgID with your client's Organization ID for Zoho Books and ...
... to yyyy-MM-dd
v_RegexdDate = v_TestDate.replaceAll("(\\d)/(\\d)/(\\d)","$3-$2-$1", false);
info v_RegexdDate;
info v_RegexdDate.toDate();
info v_RegexdDate.toString("E, d MMM yyyy");
info "*********************";
//
// ...
... to parse the data in the appropriate columns was not working as expected.
How?
The quick answer is a regex that will replace any commas between two quotes with a custom string, to be exact:
v_FormattedData ...
... replace the my_owner and my_app with your Zoho Creator owner and app name respectively) Update 2022: I've included the code to verify the webhook came from Shopify:
//
// declare response variable back ...
... every month"...
How?
Rather than just babble on about it, here's the code, replace what you need just noting that I'm enclosing each value with double-quotes because the values might have commas and ...
We use cookies to improve your experience on our website. By browsing this website, you agree to our use of cookies. Read more about our Privacy Policy.