Suppose we have some lines below from where we just want to cut out ‘hello’ regardless of its case.Lines: fetch hello onlynot hello-worldavailable hellonot the…
The syntax to assign a name to a capture group is (?<captureGroupName>patternToMatch).Let’s see an example : // Javascript code var str = "My birth date…
I have some lines below in which I want fetch only those lines where .com does not exist: Sample Lines : https://abc.com – Test sitehttps://testProfile.in…
<!--- Tag Syntax ---> <cfset Fruit = "Apple"> <cfswitch expression="#Fruit#"> <cfcase value="Mango,Apple,Watermelon"> I love Mango and Apple and Watermelon. </cfcase> <cfcase value="Guava"> I like Guava.…
transaction { try { // code to run transaction action="commit"; } catch(any e) { transaction action="rollback"; } } try-catch is optional in transaction but is…