forked from fengbird/JavaWebCoreNote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsource9.xml
More file actions
62 lines (62 loc) · 4.33 KB
/
source9.xml
File metadata and controls
62 lines (62 loc) · 4.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<XPathTutorial creator="[email protected]">
<key>string-length()</key>
<key>name()</key>
<key>&lt;</key>
<key>&gt;</key>
<description lang="ita">La funzione string-length() restituisce il numero di caratteri presenti nella stringa. Dovete utilizzre &lt; in sostituzione di < e &gt; al posto di > .</description>
<description lang="eng">The string-length function returns the number of characters in the string. You must use &lt; as a substitute for < and &gt; as a substitute for > .</description>
<description lang="ger">Die Funktion "string-length()" liefert die Anzahl der Zeichen eines Strings zurück. Man muss &lt; als Austausch für < und &gt; als Austausch für > verwenden.</description>
<description lang="cze">
Funkce "string-length" vrací počet znaků v řetězci.
Musíte použít &lt; jako náhražku pro < (menší než)
a &gt; jako náhražku pro > (větší než).</description>
<description lang="fre">
La fonction string-length retourne le nombre de caractères dans une chaîne. Vous devez utiliser &lt; comme substitutif de < et &gt comme substitutif de >
</description>
<description lang="dut">De functie string-length geeft het aantal tekens weer van een tekenreeks. U moet &lt; gebruiken als vervanging voor < en &gt; als vervanging voor ></description>
<description lang="spa">La función 'string-length' produce el número de
caracteres de su argumento. Se debe utilizar &lt; en remplazo de <
y &gt; en remplazo de >.</description>
<description lang="rus">Функция string-length() возвращает число символов в строке. Следует использовать &lt; вместо <, так как символ '<' зарезервирован для нужд разметки.</description>
<description lang="chi">string-length函数返回字符串的字符数,你应该用&lt;替代<, 用&gt;代替></description>
<source>
<AAA>
<Q/>
<SSSS/>
<BB/>
<CCC/>
<DDDDDDDD/>
<EEEE/>
</AAA>
</source>
<example path="//*[string-length(name()) = 3]">
<p lang="ita">Selezione degli elementi il cui nome è composto da 3 caratteri.</p>
<p lang="eng">Select elements with three-letter name</p>
<p lang="ger">Wähle alle Elemente aus, deren Namen drei Buchstaben enthält</p>
<p lang="cze">Vyber elementy, které mají třípísmenné jméno</p>
<p lang="dut">Selecteert alle elementen met een drieletterige naam</p>
<p lang="spa">Selecciona elementos con tres caracteres en su nombre</p>
<p lang="rus">Выбираются все элементы, имя которых состоит из трех символов</p>
<p lang="chi">选择名字长度为3的元素</p>
</example>
<example path="//*[string-length(name()) < 3]">
<p lang="ita">Selezione degli elementi il cui nome è composto da 1 o 2 caratteri.</p>
<p lang="eng">Select elements name of which has one or two characters</p>
<p lang="ger">Wähle alle Elemente aus, deren Namen ein oder zwei Buchstaben hat</p>
<p lang="cze">Vyber elementy, jejichž jméno má jeden nebo dva znaky</p>
<p lang="dut">Selecteert alle elementen die een naam hebben met een of twee tekens</p>
<p lang="spa">Selecciona elementos cuyo nombre contenga uno o dos caracteres</p>
<p lang="rus">Выбираются все элементы, имя которых состоит из двух или одного символа</p>
<p lang="chi">选择名字长度小于3的元素</p>
</example>
<example path="//*[string-length(name()) > 3]">
<p lang="ita">Selezione degli elementi il cui nome è composto da più di 3 caratteri.</p>
<p lang="eng">Select elements with name longer than three characters</p>
<p lang="ger">Wähle alle Elemente aus, deren Name mehr als drei Zeichen enthält</p>
<p lang="cze">Vyber elementy se jménem delším než tři znaky</p>
<p lang="dut">Selecteert alle elementen die een naam hebben die langer is dan drie tekens</p>
<p lang="spa">Selecciona elementos cuyo nombre tenga más de tres caracteres</p>
<p lang="rus">Выбираются все элементы, имя которых состоит более чем из трех символов</p>
<p lang="chi">选择名字长度大于3的元素</p>
</example>
</XPathTutorial>