我希望找到一个模仿Ruby的ERB库的部分功能的librray。即替换<%和%>之间的变量的文本。我不需要ERB提供的代码执行部分,但如果你知道有这样的东西我会非常感激。
答案 0 :(得分:2)
我修改了一个我以前用来测试一些东西的类。它甚至没有ERB那么好,但它完成了替换文本的工作。它只适用于属性,因此您可能想要修复它。
<强>用法:强>
Substitutioner sub = new Substitutioner(
"Hello world <%=Wow%>! My name is <%=Name%>");
MyClass myClass = new MyClass();
myClass.Wow = 42;
myClass.Name = "Patrik";
string result = sub.GetResults(myClass);
<强>代码:强>
public class Substitutioner
{
private string Template { get; set; }
public Substitutioner(string template)
{
this.Template = template;
}
public string GetResults(object obj)
{
// Create the value map and the match list.
Dictionary<string, object> valueMap = new Dictionary<string, object>();
List<string> matches = new List<string>();
// Get all matches.
matches = this.GetMatches(this.Template);
// Iterate through all the matches.
foreach (string match in matches)
{
if (valueMap.ContainsKey(match))
continue;
// Get the tag's value (i.e. Test for <%=Test%>.
string value = this.GetTagValue(match);
// Get the corresponding property in the provided object.
PropertyInfo property = obj.GetType().GetProperty(value);
if (property == null)
continue;
// Get the property value.
object propertyValue = property.GetValue(obj, null);
// Add the match and the property value to the value map.
valueMap.Add(match, propertyValue);
}
// Iterate through all values in the value map.
string result = this.Template;
foreach (KeyValuePair<string, object> pair in valueMap)
{
// Replace the tag with the corresponding value.
result = result.Replace(pair.Key, pair.Value.ToString());
}
return result;
}
private List<string> GetMatches(string subjectString)
{
try
{
List<string> matches = new List<string>();
Regex regexObj = new Regex("<%=(.*?)%>");
Match match = regexObj.Match(subjectString);
while (match.Success)
{
if (!matches.Contains(match.Value))
matches.Add(match.Value);
match = match.NextMatch();
}
return matches;
}
catch (ArgumentException)
{
return new List<string>();
}
}
public string GetTagValue(string tag)
{
string result = tag.Replace("<%=", string.Empty);
result = result.Replace("%>", string.Empty);
return result;
}
}
答案 1 :(得分:1)
看看TemplateMachine,我还没有测试过,但似乎有点类似ERB。
答案 2 :(得分:1)
提供帮助的链接不再可用。我已经离开了标题,所以你可以谷歌了。
还要寻找“C#Razor”(这是MS与MVC一起使用的模板引擎)
还有更多的东西。
Visual Studio附带T4,这是一个模板引擎(即vs 2008,2005需要免费添加)
免费T4编辑器 - DEAD LINK
T4 Screen Cast- DEAD LINK
有一个名为Nvolicity的开放式项目,由Castle Project接管
Nvolictiy Castle项目升级 - DEAD LINK
HTH 骨
答案 3 :(得分:0)
我刚刚发布了一个 very 简单库,用于替换ERB。
您无法在<%%>
大括号中进行评估,您只能使用这些大括号:<%= key_value %>
。 key_value
将成为您作为替换参数传递的Hashtable的关键,并且大括号被Hashtable中的值替换。就是这样。
https://github.com/Joern/C-Sharp-Substituting
此致,
Joern