PHP、単純な暗号化された暗号文の投稿に適しています
コードをコピー コードは次のとおりです:
//以前のバージョンからの暗号化された置換
function compress_func($match) {return strlen($match[0]).$match[0]{0};}
function uncompress_func($match) {return str_repeat($match[2], $match[1]);}
function compress($str) {
$i = 0;
$ pattern = array(); > return preg_replace_callback($pattern, "compress_func", $str);
}
function uncompress($str) {
return preg_replace_callback("/(d )( w)/", " uncompress_func", $str);
}
?>
AWK、共通形式
コードをコピーします コードは次のとおりです:
#!/bin/awkfunction compress(str, _ARGVEND_, str_out, str_len, i, s, l) {
str_out = "";
str_len = length(str);
l = 1; ) {
if(substr( str, i, 1) == s) l ; str_out を返す;
function uncompress(str, _ARGVEND_, str_out, str_len, i , c) {
str_out = "";
str_len = length(str);
for(i =1; i c = 0; while(substr(str, i, 1)~/[0-9]/) {
c = c*10 substr(str, i, 1)
i }
str_out を返します。
}