|
![]() |
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
Using Acrobat Pro DC with FusionPro version 10.1.11
I need to join the State and zip with a different "join" of just a space. The following code works except it joins STATE and ZIP CODE with ", " Is there a way to differentiate the joins. var items = [ Field("STREET"), Field("CITY"), Field("STATE"), Field("ZIP CODE") ]; items = items.filter(String); // remove empty items return [ items.slice(0, 4).join(", "), items.slice(4).join(" ") ].filter(String).join("<br>\n"); |
#2
|
||||
|
||||
![]()
So, I'm usually in favor of clever ways to use arrays and such to abstract things and reduce repetitive code. If this were something that could be possibly extended to handle more fields in the future, that would be a great way to go. But in this case, you're only ever going to have these few fields, so it might be better to be more straightforward.
If you only need a single space, just put the space there: Code:
return items.slice(0, 3).join(", ") + " " + items.slice(3); Code:
return [ Field("STREET"), Field("CITY"), Field("STATE") ].join(", ") + " " + Field("ZIP CODE"); Code:
return Field("STREET") + ", " + Field("CITY") + ", " + Field("STATE") + " " + Field("ZIP CODE"); Code:
var streetAddr = [ Field("Address1"), Field("Address2") ].filter(String); return [ streetAddr, Field("CITY"), Field("STATE") ].join(", ") + " " + Field("ZIP CODE");
__________________
Dan Korn FusionPro Developer / JavaScript Guru / Forum Moderator PTI Marketing Technologies | Printable | MarcomCentral I am a not a Support engineer, and this forum is not a substitute for Support. My participation on this forum is primarily as a fellow user (and a forum moderator). I am happy to provide help and answers to questions when I can; however, there is no guarantee that I, or anyone else on this forum, will be able to answer all questions or fix any problems. If I ask for files to clarify an issue, I might not be able to look at them personally. I am not able to answer private messages, emails, or phone calls unless they go through proper Support channels. Please direct any sales or pricing questions to your salesperson or inquiries@marcom.com. Complex template-building questions, as well as all installation and font questions or problems, should be directed to FusionProSupport@marcom.com. Paid consulting work may be required to fulfill your template-building needs. This is a publicly viewable forum. Please DO NOT post fonts, or other proprietary content, to this forum. Also, please DO NOT post any "live" data with real names, addresses, or any other personal, private, or confidential data. Please include the specific versions of FusionPro, Acrobat, and your operating system in any problem reports or help requests. I recommend putting this information in your forum signature. Please also check your composition log (.msg) file for relevant error or warning messages. Please post questions specific to the MarcomCentral Enterprise and Web-to-Print applications in the MarcomCentral forum. Click here to request access. Or contact your Business Relationship Manager (BRM/CPM) for assistance. Please direct any questions specific to EFI's Digital StoreFront (DSF) to EFI support. How To Ask Questions The Smart Way The correct spellings are JavaScript, FusionPro, and MarcomCentral (each with two capital letters and no spaces). Acceptable abbreviations are JS, FP, and MC (or MCC). There is no "S" at the end of "Expression" or "Printable"! The name of the product is FusionPro, not "Fusion". "Java" is not is not the same as JavaScript. Check out the JavaScript Guide and JavaScript Reference! FusionPro 8.0 and newer use JavaScript 1.7. Older versions use JavaScript 1.5. return "KbwbTdsjqu!spdlt\"".replace(/./g,function(w){return String.fromCharCode(w.charCodeAt()-1)}); ![]() Last edited by Dan Korn; August 26th, 2021 at 09:06 AM.. |
#3
|
|||
|
|||
![]()
Thank you Dan,
The first suggestion worked great. I forgot to mention that if the whole address line was blank I wanted the line suppressed. Also "having no address" was a customer request for business cards. Thanks again for your expertise. |
#4
|
||||
|
||||
![]() Quote:
Code:
return Trim([ Field("STREET"), Field("CITY"), Field("STATE") ].join(", ") + " " + Field("ZIP CODE"));
__________________
Dan Korn FusionPro Developer / JavaScript Guru / Forum Moderator PTI Marketing Technologies | Printable | MarcomCentral I am a not a Support engineer, and this forum is not a substitute for Support. My participation on this forum is primarily as a fellow user (and a forum moderator). I am happy to provide help and answers to questions when I can; however, there is no guarantee that I, or anyone else on this forum, will be able to answer all questions or fix any problems. If I ask for files to clarify an issue, I might not be able to look at them personally. I am not able to answer private messages, emails, or phone calls unless they go through proper Support channels. Please direct any sales or pricing questions to your salesperson or inquiries@marcom.com. Complex template-building questions, as well as all installation and font questions or problems, should be directed to FusionProSupport@marcom.com. Paid consulting work may be required to fulfill your template-building needs. This is a publicly viewable forum. Please DO NOT post fonts, or other proprietary content, to this forum. Also, please DO NOT post any "live" data with real names, addresses, or any other personal, private, or confidential data. Please include the specific versions of FusionPro, Acrobat, and your operating system in any problem reports or help requests. I recommend putting this information in your forum signature. Please also check your composition log (.msg) file for relevant error or warning messages. Please post questions specific to the MarcomCentral Enterprise and Web-to-Print applications in the MarcomCentral forum. Click here to request access. Or contact your Business Relationship Manager (BRM/CPM) for assistance. Please direct any questions specific to EFI's Digital StoreFront (DSF) to EFI support. How To Ask Questions The Smart Way The correct spellings are JavaScript, FusionPro, and MarcomCentral (each with two capital letters and no spaces). Acceptable abbreviations are JS, FP, and MC (or MCC). There is no "S" at the end of "Expression" or "Printable"! The name of the product is FusionPro, not "Fusion". "Java" is not is not the same as JavaScript. Check out the JavaScript Guide and JavaScript Reference! FusionPro 8.0 and newer use JavaScript 1.7. Older versions use JavaScript 1.5. return "KbwbTdsjqu!spdlt\"".replace(/./g,function(w){return String.fromCharCode(w.charCodeAt()-1)}); ![]() |
![]() |
Tags |
different join, multiple fields, suppress line |
Thread Tools | Search this Thread |
Display Modes | |
|
|