ActionScript 3 模板系统(用散列中的项替换字符串中的项)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 模板系统(用散列中的项替换字符串中的项)相关的知识,希望对你有一定的参考价值。

function makeReplacements( template : String, replacements : Object ) : String
{
	var regExp : RegExp = new RegExp( "(%\{(.*?)})","" );
	var match : Array;
	while( match = regExp.exec( template ) )
	template = template.replace( regExp, replacements[ match[ 2 ] ] );
	
	return template;
}

以上是关于ActionScript 3 模板系统(用散列中的项替换字符串中的项)的主要内容,如果未能解决你的问题,请参考以下文章

开散列的实现--哈希冲突

开散列的实现--哈希冲突

ActionScript 3 AS3中的按钮模板类

哈希表开散列法(拉链法)

如何根据散列中的键/值查找键/值数据并将其添加到 Redis 中的散列?

将值推入散列中的数组