-
Recent Posts
Recent Comments
Archives
- May 2018
- April 2018
- January 2018
- October 2017
- April 2017
- February 2017
- January 2017
- November 2016
- September 2016
- August 2016
- July 2016
- June 2016
- May 2016
- April 2016
- March 2016
- February 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- June 2015
- May 2015
- April 2015
- March 2015
- February 2015
- January 2015
- December 2014
- November 2014
- October 2014
- September 2014
- August 2014
- July 2014
- June 2014
- May 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- November 2011
- October 2011
- September 2011
- August 2011
- May 2011
- April 2011
Categories
Meta
Category Archives: Regular Expressions
Remove white spaces using regular expression [t ]+
The correct expression to remove white spaces using regular expression is [t ]+ — Make sure you select Regular Expression in Search Criteria I used the following which id not quite work [t ]*. The problem with this one is … Continue reading
Posted in Regular Expressions
Leave a comment
Copy and Past in Visual Studio and Fix IDs
When you copy a big chunk of ASP.NET code the chances are you are going to run int IDs problem. IDs from the new code is wiped as soon as you past them. Here is a solution to fix it. … Continue reading
regex-greedy
Greedy means it will go towards the end of line and will NOT stop at first match if there are other matches available. ‘.*’ = Greedy ‘.*?’ = Lazy Lazy has extra character (?) in the regex syntax. Similarly you … Continue reading
Useful regular expression in Visual Studio
This is for Visual Studio 2012. VS 2012 uses a more standard RegEx rather than earlier version. This may not work in earlier version of VS. Match images tags Regular Expression: <imageurl>.*</imageUrl> Remove blank lines from Code Regular Expressoin: … Continue reading
Posted in Regular Expressions
Leave a comment