为XPath自定义函数(因为XPath1.0的函数非常有限)

王朝other·作者佚名  2006-11-24
窄屏简体版  字體: |||超大  

想要一个正则表达式的匹配函数,但是XPath1.0中间没有,

只好自己扩展一个,在网上搜了一下,有一篇文章不错,

http://www.microsoft.com/china/MSDN/library/data/xml/AddingCustomFunctionstoXpath.mspx?mfr=true

该文章定义了一个split,一个replace,不过就是没有match,

只好在它的基础上,扩展一下

仔细观察一下代码,发现想要扩展一个函数很简单,只要修改这几段就好了:

1:CustomContext.cs

// Function to resolve references to my custom functions.

public override IXsltContextFunction ResolveFunction(string prefix,

string name, XPathResultType[] ArgTypes)

{

XPathRegExExtensionFunction func = null;

// Create an instance of appropriate extension function class.

switch (name)

{

case "Match":

// Usage

// myFunctions:Matches(string source, string Regex_pattern) returns Boolean

func = new XPathRegExExtensionFunction("Match", 2, 2, new

XPathResultType[] {XPathResultType.String, XPathResultType.String}

, XPathResultType.Boolean );

break;

case "Split":

// Usage

// myFunctions:Split(string source, string Regex_pattern, int n) returns string

func = new XPathRegExExtensionFunction("Split", 3, 3, new

XPathResultType[] {XPathResultType.String, XPathResultType.String,

XPathResultType.Number}, XPathResultType.String);

break;

case "Replace":

// Usage

// myFunctions:Replace(string source, string Regex_pattern, string replacement_string) returns string

func = new XPathRegExExtensionFunction("Replace", 3, 3, new

XPathResultType[] {XPathResultType.String, XPathResultType.String,

XPathResultType.String}, XPathResultType.String);

break;

}

return func;

}

2: XPathRegExExtensionFunction.cs

// This method is invoked at run time to execute the user defined function.

public object Invoke(XsltContext xsltContext, object[] args,

XPathNavigator docContext)

{

Regex r;

string str = null;

// The two custom XPath extension functions

switch (m_FunctionName)

{

case "Match":

r = new Regex(args[1].ToString());

MatchCollection m = r.Matches(args[0].ToString());

if (m.Count == 0)

{

return false;

}

else

{

return true;

}

break;

case "Split":

r = new Regex(args[1].ToString());

string[] s1 = r.Split(args[0].ToString());

int n = Convert.ToInt32(args[2]);

if (s1.Length < n)

str = "";

else

str = s1[n - 1];

break;

case "Replace":

 

[1] [2] 下一页

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航