SEARCH

Posts Tagged ‘search’

Grep To Find Code

Wednesday, October 12th, 2011

Find code by using grep

The command line utility grep can be used to find specific code in files. I needed a way to find code snippets recently while designing a magento shopping cart. The documentation for magento is sparse.

Grep enabled me to find specific code and output the exact file name and its location. With grep, I was also able to find the exact line number for the code.

(more…)

Tags: , , , , , , ,
Posted in Tips & Tricks | No Comments »

Regular Expressions Video 0027

Friday, August 5th, 2011

A Video for the Ojambo.com regular expressions article.
Part One of One

(more…)

Tags: , , , , , , , , , , , , ,
Posted in Tips & Tricks, Videos | No Comments »

Regular Expressions

Wednesday, July 20th, 2011

Advanced search and replace using regular expressions

Basic find and replace operations are a form of regular expressions. Regular expressions are also referred to as regex or regexp. Advanced operations of regular expressions allow more control of matching patterns.

Matching patterns can be set to matching the entire document, the first instance, or part of a word.

(more…)

Tags: , , , , , ,
Posted in Tips & Tricks | 3 Comments »