There are a lot of people out there that no how to do file searches and Microsoft Word searches by using wildcard characters, but not as many people know how to work with regular expressions. That is the main reason why I added the RegExp.fromWildExp() function to jPaq. In addition, I have created an example page which dynamically generates the regular expression from the wildcard expression that you specify. Check this jPaq example out by clicking here. The initial example shows you how to write a regular expression that matches all text that starts at the beginning of a word with a capital “J” and ends at the end of a word with a lowercase “t”. NOTE: Unlike regular expressions, wildcard expressions look to find the smallest match possible.
Blog
Salesforce – Calling REST API From Apex Using Modern Named Creds
Recently, I ran into an interesting Salesforce edge case where I needed an Apex trigger to make a future call to Salesforce’s own REST API. My goal was to essentially nudge certain Account records so Read more…