07.09.2016, 14:50
I've written a few quick and dirty regular expressions I used to convert my own scripts. You can use these in practically any editor which supports regular expression replacements (I used Notepad++).
Search for:
Replace with:
---------------------------
Search for:
Replace with:
---------------------------
Search for:
Replace with:
Search for:
Код:
([^ \t]+)[ \t]*=[ \t]*cache_get_row_(int|float)\(([^,]+), ([^,]+)(, [^ \)]+)?\)
Код:
cache_get_value_index_$2\($3, $4, $1\)
Search for:
Код:
cache_get_row\(([^,]+), ([^,]+), ([^,]+), (?:[^,]+)(, [^,]+)?\)
Код:
cache_get_value_index\($1, $2, $3$4\)
Search for:
Код:
([^ \t]+)[ \t]*=[ \t]*cache_get_([^_]+)_count\([^ \)]*\)
Код:
cache_get_$2_count\($1\)