Posts

How to get only the number from a alphanumeric String in ColdFusion

 If the input contains numbers and characters, and we need to get only the numeric part from that, we can use reReplace Function in Coldfusion like this: <cfset test = "rtf4545"> <cfset result = reReplace(trim(test),"[^0-9\.]+","","All")> <cfoutput>#result#</cfoutput> Output: 4545

How to add a custom confirmation message in google forms

Image
 Once google form is submitted, you can customize the confirmation message which shows to the user. To do so please follow the video as given below:

PDF lib error : End character U+003E for inline option list not found in 'PDFlib_com.PDF'.

Since PDf lib uses < and > characters for start and end tags, if your text contain these characters it will throw the error like below: End character U+003E for inline option list not found in 'PDFlib_com.PDF'. So for fixing these issues, we can give the option begoptlistchar to "none".   So the code can be like :   oPDF.create_textflow("test < 10","begoptlistchar=none")>

How to add new line in google form confirmation message

Image
Confirmation messages are displayed after submitting the form / questions by the receiver. To add new line in the confirmation message, run the below script in the script editor. function   addLineBreaks () {    var   form  =  FormApp . getActiveForm ();        var   title  =  "Thanks for your submission. We will get back to you sooon" ;    form . setConfirmationMessage (  title . split ( ". " ). join ( "\n" ));    } For reference :

How to add new line in the 'add title and description' section in google forms

Image
 Adding new line in the section 'add title and description'  in google forms can be done by running below code in the script editor : code to copy: function addLineBreaks() {   var form = FormApp.getActiveForm();       // find form items you need    var questions = form.getItems(FormApp.ItemType.SECTION_HEADER);      for(i = 0; i < questions.length; i++)   {     var title = questions[i].getTitle();     questions[i].setTitle(title.split(". ").join("\n"));     var desc= questions[i].getHelpText();     questions[i].setHelpText(desc.split(". ").join("\n"));   } } Below video will give complete steps to do this :

How to find the extension of a file name in coldfusion | coldfusion code to get file extension of filename

 We can use the following code to get the file extension of a filename provided. First get the file name to a variable, then using listlast ()  we can get the fille extension. <cfset file = "test.png"> <cfset FileExt=ListLast(file,".")> <cfoutput>#FileExt#</cfoutput>

how to use coldfusion variable in javascript | assigning coldfusion variable to a javascript variable

 There are some cases where we need coldfusion variable inside javascript. We may need to assign the javascript variable with coldfusion variable value. For this, we can use the script tag, as we use in HTML and can assign like given below: Please note that the entire JS code have to be inside <cfoutput> block. <cfset a="10"> <cfoutput>     <script type="text/javascript">         var test = '#a#';         alert(test);     </script> </cfoutput>