我正在使用reg ex模式,它不支持xpath.currently
null
以下的x /abc/tra/tra/part[tr/@tr="http://www.sd.org"]/trId
值。
我正在使用具有默认命名空间的xpath,当我更改xpath格式时会实现值,但在这种情况下,我无法获取值,但是如果我更改了xpath,那么我就获得了值。
所以我需要正则表达式将实际的xpath转换为预期的。
xpath是:
/abc/tra/tra/part[:tr/@tr="http://www.sd.org"]/trId
预期是:
// Start the clock when the program starts.
private Stopwatch _pictureTimer = Stopwatch.StartNew();
// Wait this long between pictures
private readonly TimeSpan _pictureWaitTime = TimeSpan.FromMinutes(1.0);
// Come here when key is pressed.
if (_pictureTimer.Elapsed > _pictureWaitTime)
{
// take the screen shot
// and then reset the stopwatch
_pictureTimer.Restart();
}
如果有任何身体可以看看。