I had been looking on the Internet for a solution to a program I had be working on and sadly didn’t come up with one. I was trying to find a way to use regular expressions to find all the html anchor tags in a string along with matching a wild card URL (ie: secnem.com.*test.html). And after many hours of thrusting my head into my keyboard I came up with:

/<a [^><]*href=[\”\’][^\”\’><]*<rule>[^\”\’><]*[\”\’][^>]*>\s*.*\s*<\/a>/iU

You’d replace <rule> with what ever url rule you want, except for any wild cards in the url I needed to use [^\”\’><]* instead of just .* . This would prevent it from matching outside of the anchor. Bascially [^\”\’><]*  means: match any character except a double quote, single quote, greater than sign, or less than sign. All of which should not be in the href field to begin with.

If you wanted to see what the content of the anchor tag was or the matched href, simply put some brackets around like so:

/<a [^><]*href=[\”\’]([^\”\’><]*<rule>[^\”\’><]*)[\”\’][^>]*>(\s*.*\s*)<\/a>/iU

Hope this helps someone. You can of course adapt this to other html tags by replacing ‘a’ for ‘table’ or w/e. Same with the href. larsolavtorvik.com has a great resource for testing regex in real time and addedbytes.com has a great cheat sheet as well.

Previous ArticleNext Article
O.

Oops… they did it again.

Well it seems my faithful cell provider sadly broke the Internet on their cellular network  again*sigh*. I’m referring back to the previous problem I had with accessing any streaming services on the mobile browser on my Samsung u740 about a year or so ago. They eventually fixed the previous problem after about 1-2 months of me acquiring the phone and reporting the problem. This time around however they’re blaming it on their recent separation from a sister company and that they no longer support streaming on their network. Of course after mowing through several Customer Service Monkeys I eventually discovered that they no longer support their paid streaming, which I could care less about. But the fact that I cannot access current streaming services on the Internet is in fact a problem on their network, but not that they don’t support streaming. At any rate, I was finally able to submit a ticket to their data analysts about a week ago… still no response.

P.

Phenom X2 955 + 8GB PC2-8500 = Win

Well I decided to get an upgrade for my current AMD Phenom 9600 setup, and that upgrade was a new Phenom X2 955 processor, 8GB of OCZ Reaper PC2-8500 memory, and ASUS M4A79 Deluxe motherboard. Now I’m currently actually using my old ASUS M3A32-MVP motherboard because the new M4A79 needs to be sent back for RMA (which made me sad). I also ordered a new printer and case for this setup so I can’t wait for that to get here as well.

But so far I’m very impressed with the results compared to the 9600. As an example, in WoW while in Dalaran my screen would stutter and freeze with an FPS 12-20 at any GFX setting. This was common through a lot of my games, where I could set the GFX settings pretty much as high or as low as they’d go and I’d still get the same FPS. This was caused by the fix for the error in the translation lookaside buffer (TLB) and L3 cache of the processor which made it suffer huge performance losses. But now with this new X2 processor I can easily fly through Dalaran with 40-70 FPS and no lag and that’s with only one of my two ATI 3870’s in the rig.

Can’t wait to see what else I can easily do.