排序
1.Introduction about Regex
1.Introduction about Regex, Everything you need to know about Regex. (5 Part Series) 1 1.Introduction about Regex 2 2. The dot(.) 3 3.Matching digits and non digits character. 4 4....
Use Java replaceAll() instead of ColdFusion ReReplaceNoCase()
Use Java replaceAll() instead of ColdFusion ReReplaceNoCase(),This blog post is in response to this blog post 'Regular expressions – practical examples to get you started'. (My co...
TrackingURLs – A ColdFusion function to parse Shipping Tracking Numbers
TrackingURLs - A ColdFusion function to parse Shipping Tracking Numbers,Just a quick post regarding TrackingURLs, a ColdFusion CFC to identify shipping tracking numbers (UPS, USPS,...
ColdFusion isIPInRange() UDF to support IPv4, IPv6, CIDR & Regex
ColdFusion isIPInRange() UDF to support IPv4, IPv6, CIDR & Regex,I received reports of 502 server errors this morning after our web application framework accidentally blacklisted o...
Check IP with Regex in Java
Check IP with Regex in Java, Let's check ip addresses in Java with regex First of all we need to import 2 library. import java.util.regex.Matcher; import java.util.regex.Pattern; E...
Day 2: Java Validation
Day 2: Java Validation, 100daysOfProgrammingNotes (6 Part Series) 1 Intro 2 Day 1: Javadoc ... 2 more parts... 3 Day 2: Java Validation 4 Day 3: Auto Generate TOC Github Markdown 5...
I ain’t afraid of no regex
I ain't afraid of no regex,Sometimes knowing what you do not want is as important as knowing what you do want. This is true for regular expressions (regex), but it is also true for...
Java Regex Cheat Sheet
Java Regex Cheat Sheet,This post will be more of a note for myself. I didn't mean to write a post, but couldn't find a comprehensive one I wanted. So, this post will be not a well-...
Getting the Gist of Java
Getting the Gist of Java, or I Had A Very Busy Weekend To catch up on a backlog of work for an upcoming deadline, I spent most of this past weekend coding (writing new stuff and fi...
The Power of Regular Expressions
The Power of Regular Expressions,Regular expressions (or regex) is a concept that is relatively simple to learn, yet can have a huge impact on your code's readability, maintainabil...
Finding Null or Empty String Checks in Java
Finding Null or Empty String Checks in Java,I have a lot of code like this: if( null == myString || ''.equals(myString)) doAThing(); Enter fullscreen mode Exit fullscreen mode The ...