2013-10-27 105 views

回答

3
let $x := [1, 2, 4 ,3, 3, 3, 1, 2, 5] 
return [ distinct-values($x[]) ] 
0

使用replace function多次:

replace($x, "([1-5])(.*)\1", "$1") 

這裏的一個全功能的JavaScript當量:

[1,2,4,3,3,1,2,5].toString().replace(/([1-5]),(\1)/g, "$1").replace(/(,[1-5])(.*)(\1)/g,"$1$2").replace(/([1-5])(.*)(,\1)/g,"$1$2") 

這裏是一個通用的JavaScript等效經由JSON.parse()方法,該方法自動地刪除重複:

var foo = [1,2,4,3,3,1,2,5]; 

var bar = "{" + foo.toString() + "}" 

var baz = bar.replace(/(\d)(.)/g , '\u0022$01\u0022:\u0022\u0022$02') 

var bop = JSON.parse(baz) 

var buz = JSON.stringify(bop).replace("{","[").replace("}","]").replace(/:""/g,"") 

var result = Function("return" + buz)() 

他再是一個測試工具:

0

正則表達式:更換絕對不是去爲這個問題的方式。

雖然馬蒂亞斯的解決方案並不在嘗試左巴工作,this script作用:

let $x := [1, 2, 4 ,3, 3, 3, 1, 2, 5] 
return [ distinct-values(jn:members($x)) ] 

它返回(試行上面的鏈接):

[ 1, 2, 3, 4, 5 ] 

腳本需要爲更詳細一點DataPower Gateways JSONiq處理器。您可以免費獲得漂亮的結果:

$ cat dv.xq 
declare namespace output = "http://www.w3.org/2010/xslt-xquery-serialization"; 

declare option output:method "json"; 
declare option jsoniq-version "0.4.42"; 

[ distinct-values(jn:members(.)) ] 
$ 
$ coproc2 dv.xq <(echo '[1, 2, 4 ,3, 3, 3, 1, 2, 5]') http://dp1-l3:2226; echo 

[ 
    1, 
    2, 
    4, 
    3, 
    5 
] 
$ 

Hermann。