This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal



Feb 17, 2017, 9:31 AM
19 Posts

Alternative for @Explode?

  • Category: Other
  • Platform: All
  • Release: 9.0.1
  • Role: Developer
  • Tags: @formula,SSJS
  • Replies: 2

Hej,

I am trying to reduce the amount of @Functions in an XPages application.

What alternatives can I use for @Explode(row, ",") in SSJS or Expression language?

Feb 20, 2017, 12:00 PM
178 Posts
I have been using this

does the work done:

 

<xp:this.text><![CDATA[#{javascript:var str = RowData;
var arr = str.split(",");
return arr[0];}]]></xp:this.text>


This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal