Filed in: Regex
Home » Regex
It can happen in old project that array objet are accessed with parentheses instead of square bracket.
For example, MyArray[0] is in fact the first element of an array in Javascript. But, IE let you use MyArray(0). This is not a good practice and other browsers doesn’t accept this syntax.
To convert easily, you can use a Regex expression. In my...
Recently, I had to work on pages which contained a lot of code that were using the famous Internet Explorer 4 document.all javascript method. It’s not supported by all browser and should not be used. You should use unique identifier but I couldn’t because time was limited for the change.
We already user JQuery so I knew that I can search...
Filed in: Regex, Visual Studio
I am far from being an expert in Regex but with good tools writing a Regex become easier.
First, I suggest you to download is RegexBuilder from Renschler. This Regex tool is ideal once the Regex is created to check few sentence and to quick see if something is wrong or not.
RegexBuilder
The second tool is something for helping you to create the Regex....