#1
|
|||
|
|||
![]()
I've got the first half of this rule working, but I can't seem to figure out the second and was hoping for some guidance.
I need to replace the registered trademark in a product name and then follow that up with italicizing the second half of the product name. So far I have: Code:
return Field("ProductDescription").replace(/DENTtips Master/g, "DENTtips" + '<f name="Compatil Fact It"> Master</f>); Code:
return Field ("ProductDescription").replace(/DENTtips® Motion | DENTtips® Motion/g, "DENTtips + '<superscript>®</superscript>' + '<f name=Compatil Fact It"> Master</f>);
__________________
Lisa B. FusionPro VDP Creator 10.0.16 Adobe Acrobat Pro DC 2018 Mac OS X 10.13.6 (High Sierra) |
#2
|
||||
|
||||
![]()
Lisa, if you're trying to capture separate patterns, put them inside parentheses like so:
Code:
return Field ("ProductDescription").replace(/(DENTtips® Master)|(DENTtips® Master)/g,'DENTtips<superscript>®</superscript><f name="Compatil Fact It"> Master</f>');
__________________
Ste Pennell FusionPro VDP Creator 9.3.15 Adobe Acrobat X 10.1.1 Mac OS X 10.12 |
#3
|
|||
|
|||
![]()
Thanks Step. I appreciate the reply.
Unfortunately, that doesn't seem to return the result I need. In fact, neither format style is being applied. I don't see the registration mark super-scripted nor is the word "Master" italicized the way it should be. (BTW - thanks for changing that in my code. I've got two different products I need to replace, one is Master the other, Motion. Looks like I copied the wrong one into the thread!)
__________________
Lisa B. FusionPro VDP Creator 10.0.16 Adobe Acrobat Pro DC 2018 Mac OS X 10.13.6 (High Sierra) |
#4
|
||||
|
||||
![]()
Try this:
Code:
return Field("ProductDescription").replace(/(DENTtips) (Master)/g, '$1<superscript>®</superscript> <f name="Compatil Fact It">$2</f>'); Quote:
Code:
return Field("ProductDescription").replace(/(DENTtips) (Master|Motion)/g, '$1<superscript>®</superscript> <f name="Compatil Fact It">$2</f>'); https://developer.mozilla.org/en-US/...ar_Expressions https://developer.mozilla.org/en-US/...String/replace
__________________
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)}); ![]() |
#5
|
|||
|
|||
![]() Quote:
My only concern is that there are only limited instances where the registered trademark is required. This template will be used in conjunction with a MarcomCentral storefront. The users know when the registered trademark is and is not required. Therefore I need to account for both scenarios. For instance, using "Motion" as the example here, if someone enters "DENTtips® Motion", the end result should superscript the registered mark and italicize the word "Motion". However if the mark is not entered, and only "DENTtips Motion" is returned, I still need "Motion" to be italicized. I tried altering your code to: Code:
return Field("ProductDescription").replace(/(DENTtips) (®) (Master)/g, '$1$2<superscript>®</superscript> <f name="Compatil Fact It">$3</f>')
__________________
Lisa B. FusionPro VDP Creator 10.0.16 Adobe Acrobat Pro DC 2018 Mac OS X 10.13.6 (High Sierra) |
#6
|
||||
|
||||
![]() Quote:
Code:
return TaggedDataField("ProductDescription").replace(/(DENTtips)(®|) (Master|Motion)/g, function(all, m1, m2, m3){return m1 + '<superscript>' + (m2 || '®') + '</superscript> <f name="Compatil Fact It">' + m3 + '</f>';});
__________________
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)}); ![]() |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|