Welcome to my site. I started this site as an online archive for me and all things virtual. I kept getting requests for help around some of the more standard issues we all hit in dealing with Cloud automation, particularly around the VMware vCloud Stack so I decided to make my forum public...and here we are.
My name is Lee Friend and I'm based in London, UK. I am a Cloud orchestration specialist in the end to end management, automation and integration of virtualisation stacks covering all pieces of the puzzle from IPAM (InfoBlox / QIP / IP Control), DNS, AD, resiliency & DR (SRM automation), management system integration (including ServiceNow, BMC Remedy, ticketing systems) and on and on.
Having worked since the very early days of virtualisation, I specialise in the vRealize suite (vRO,vRA,vCD,vR OPs,vCloudClient,SRM,and on) with the aim of orchestrating wherever it's needed. I have helped out large financials, global exchanges and cloud service providers at an architecture level all the way through to workflow engineering.
All topics related to VMware vCenter Orchestrator / vRealize Orchestrator
-
leefriend
- Site Admin
- Posts: 30
- Joined: Sat Dec 20, 2014 4:45 pm
Postby leefriend » Wed Nov 02, 2016 1:30 pm
Using RegEx to find matching expressions:
Check a string for match:Code: Select all
var myString = "some text to find the expression";
var regexp = new RegExp("find", 'i'); // i means it is case-insensitive
if(myString.match(regexp)){
return "found a match";
}else{
return "no match";
}
Replace a string for match:Code: Select all
var myString = "some text to find the expression";
var regexp = new RegExp("find", 'i');
myString = myString.replace(regexp, "match");
// returns "some text to match the expression"
Return to “Everything vCO / vRO”