SoapUI Xpath断言:匹配字段的确切长度

时间:2018-05-10 10:17:14

标签: xpath soapui assertion

我需要匹配,字符串的确切长度,并且我使用下面的代码:

declare namespace 
ns123='urn:lt:sb:xmlns:services:customers:customerinformationfile:GetCustByGlobalId:1.2';
matches(//ns123:legalCode, "[0-9-]{10}")

问题是它只能用于更长的时间(例如,如果字段内容为11,则失败,但如果内容为9则不会出现。)

1 个答案:

答案 0 :(得分:0)

你快到了。您只需在正则表达式中设置一些起点和终点边界:

^[0-9-]{10}$