uncleflo

profile picture

Some cool dude. Higher order of decision making. Absolute.

Registered since September 28th, 2017

Has a total of 4246 bookmarks.

Showing top Tags within 12 bookmarks

howto   information   development   guide   reference   administration   design   website   software   solution   service   product   online   business   uk   tool   company   linux   code   server   system   application   web   list   video   marine   create   data   experience   description   tutorial   explanation   technology   build   blog   article   learn   world   project   boat   download   windows   security   lookup   free   performance   javascript   technical   network   control   beautiful   support   london   tools   course   file   research   purchase   library   programming   image   youtube   example   php   construction   html   opensource   quality   install   community   computer   profile   feature   power   browser   music   platform   mobile   user   process   work   database   share   manage   hardware   professional   buy   industry   internet   dance   advice   installation   developer   3d   search   material   access   customer   camera   travel   test   standard   review   documentation   css   money   engineering   develop   webdesign   engine   device   photography   digital   api   speed   source   program   management   phone   discussion   question   event   client   story   simple   water   marketing   app   yacht   content   setup   package   fast   idea   interface   account   communication   cheap   compare   script   study   market   live   easy   google   resource   operation   startup   monitor   training  


Tag selected: regex.

Clear all

Showing 12 results.

Looking up regex tag. Showing 12 results. Clear

How to use MySQL to search in php serialized fields

http://blastar.biz/2013/11/28/how-to-use-mysql-to-search-in-php-serialized-fields/

Saved by uncleflo on June 22nd, 2018.

Well, first rule – you should not do this. But if there is good reason, consider using such query for searching in index-based arrays: SELECT * FROM table WHERE your_field_here REGEXP '.*;s:[0-9]+:"your_value_here".*' In case you have assoc array serialized you can use: SELECT * FROM table WHERE your_field_here REGEXP '.*"array_key_here";s:[0-9]+:"your_value_here".*' Of course it won’t be very fast but in small tables should be enough

rule index mysql search query array regex fast table associate serialized reason field php database stored solution development code sql


Unicode Character Categories

http://www.fileformat.info/info/unicode/category/index.htm

Saved by uncleflo on December 27th, 2017.

Each unicode character is assigned a category. This is the complete list of categories.

lookup reference development unicode category codepoint code character format letter mark number universal howto pcre regex regular expression information


The Art of Web ~ PHP: Parsing HTML to find Links

http://www.the-art-of-web.com/php/parse-links/

Saved by uncleflo on February 22nd, 2015.

From blogging to log analysis and search engine optimisation (SEO) people are looking for scripts that can parse web pages and RSS feeds from other websites - to see where their traffic is coming from among other things. Parsing your own HTML should be no problem - assuming that you use consistent formatting - but once you set your sights at parsing other people's HTML the frustration really sets in. This page presents some regular expressions and a commentary that will hopefully point you in the right direction.

regex programming php html development monitor scan howto web website seo document format expression analysis


Unicode Character Classes in ECMAScript Regular Expressions

http://inimino.org/~inimino/blog/javascript_cset

Saved by uncleflo on January 20th, 2015.

ECMAScript, the standardized version of the language JavaScript, defines string values as sequences of UTF-16 code units, not as sequences of characters. This language misfeature complicates Unicode handling considerably. For characters in the Basic Multilingual Plane (BMP) a single UTF-16 code unit (one 16-bit word) suffices. For characters outside this range, two code units are necessary. As an example, the Latin letter A is both one character and one code unit: "A".length === 1, but the Unicode character U+1D400 MATHEMATICAL BOLD CAPITAL A is one character but two code units: "퐀".length === 2. A better language would hide this ugly implementation detail from users, and string attributes such as length would be in terms of characters, not code units. Unfortunately, for historical reasons, ECMAScript forces programmers who want proper Unicode support to deal with raw UTF-16 directly.

javascript regex unicode RegExp text search information blog article guide explanation ecmascript class expression character


Regex Tutorial - Unicode Characters and Properties

http://www.regular-expressions.info/unicode.html

Saved by uncleflo on January 20th, 2015.

Unicode is a character set that aims to define all characters and glyphs from all human languages, living and dead. With more and more software being required to support multiple languages, or even just any language, Unicode has been strongly gaining popularity in recent years. Using different character sets for different languages is simply too cumbersome for programmers and users.

unicode regex regexp characters php mysql sql database encoding encode character language software require pitfall escape property engine flavor requirement tutorial create information


JavaScript Regex :: XRegExp

http://xregexp.com/

Saved by uncleflo on January 20th, 2015.

XRegExp is an open source (MIT License) JavaScript library that provides augmented and extensible regular expressions. You get new syntax, flags, and methods beyond what browsers support natively. XRegExp is also a regex utility belt with tools to make your client-side grepping simpler and more powerful, while freeing you from worrying about pesky cross-browser inconsistencies and the dubious lastIndex property.

javascript regexp library js validation useful regular open source expression regex download compress replace support capture provide syntax inconsistency tool utility crossbrowser website development solution information


Rubular: a Ruby regular expression editor and tester

http://www.rubular.com/

Saved by uncleflo on December 7th, 2014.

An excellent tool to start developing and learning and checking regexes. Rubular is a Ruby-based regular expression editor. It's a handy way to test regular expressions as you write them. To start, enter a regular expression and a test string. Or you can try an example.

regex ruby tools development programming reference rubular test expression online tool software learn example solution editor string


Regular Expression Basic Syntax Reference

http://www.regular-expressions.info/reference.html

Saved by uncleflo on August 24th, 2013.

Welcome to Regular-Expressions.info, The Premier website about Regular Expressions. A regular expression (regex or regexp for short) is a special text string for describing a search pattern. You can think of regular expressions as wildcards on steroids. You are probably familiar with wildcard notations such as *.txt to find all text files in a file manager.

expression guide information development regular regex tutorial lookup howto reference cheatsheet programming string sheet


regex - PHP: fastest way to check for invalid characters (all but a-z, A-Z, 0-9, #, -, ., $)? - Stack Overflow

http://stackoverflow.com/questions/1735972/php-fastest-way-to-check-for-invalid-characters-all-but-a-z-a-z-0-9

Saved by uncleflo on February 4th, 2013.

I have to check the buffer input to a PHP socket server as fast as possible. To do so, I need to know if the input message $buffer contains any other character(s) than the following: a-z, A-Z, 0-9, #, -, . and $. I'm currently using the following ereg function, but wonder if there are ways to optimize the speed. Should I maybe use a different function, or a different regex?

post form development validation regex string php code solution character


Check If A String Contains Only Numbers In PHP

http://www.phpbook.net/check-if-a-string-contains-only-numbers-in-php.html

Saved by uncleflo on January 10th, 2013.

In this tutorial, we will discussing how to properly check if a string only contains numbers in PHP

solution multiple number int string contain development guide reference snippet php regex


MD5 Hash for "yahoo" and its variants. Reverse look-up.

http://wordd.org/241FE8AF1E038118CD817048A65F803E

Saved by uncleflo on January 24th, 2011.

wordd.org offers the ability to find out reverse look-up salt-less md5 hashed words such as "yahoo" and a set of common variants. This is not intended as a tool to hack passwords, but to recover them from databases such as wordpress that store unsalted hashes. Got salt? Salting means prepending or appending a letter or word to a your object prior to hashing it. In theory this makes sites like this one useless, as common hashes cannout be anticipated. It is recommended that everyone salts passwords before hashing. This prevents brute-force cracking to say the least.

salt hash php development regex recover hack


Regular-Expressions.info

http://www.regular-expressions.info/

Saved by uncleflo on January 18th, 2011.

This quick start will quickly get you up to speed with regular expressions. Obviously, this brief introduction cannot explain everything there is to know about regular expressions. For detailed information, consult the regular expression tutorial. Each topic in the quick start corresponds with a topic in the tutorial, so you can easily go back and forth between the two.

programming reference development tutorial howto regular expression regex information guide learn tools


No further bookmarks found.