Difference between revisions of "User:Ochristi"

From Learn Na'vi Wiki
Jump to navigation Jump to search
(Created page with 'Kaltxì ma lertu leNa'viyä tìnumeyä. Tstxo oeyä lu '''okrìsti''' mì awngeyä ''plltxetseng''. New oe livu lesrung tsatseng tsun oe. Rutxe, eyawr si tìkeyawrit oeyä frakr…')
 
Line 9: Line 9:
 
!colspan="3" style="background-color:#B3B7FF" | regex
 
!colspan="3" style="background-color:#B3B7FF" | regex
 
|- style="background-color:#B9FFC5;"
 
|- style="background-color:#B9FFC5;"
| expresion|| example || description
+
| expression|| example || description
  
 
|-
 
|-
| <code><nowiki>(\[)(\S)*\u0027(\S)*(\])</nowiki></code>
+
| <code><nowiki>\[\S*\u0027\S*\]</nowiki></code>
 
||
 
||
 
  {{acc|e}}o [ˈɛ.o]
 
  {{acc|e}}o [ˈɛ.o]
Line 21: Line 21:
  
 
|-
 
|-
| <code><nowiki>(\S)*\s(\[)(\S)*(r[^\s^\u0329](\S)*|r)(\])</nowiki></code>
+
| <code><nowiki>\S*\s\[\S*(r[^\s^\u0329]\S*|r)\]</nowiki></code>
 
||
 
||
 
  <span style="background-color:yellow;">eyawr [ɛ.jawr]</span>
 
  <span style="background-color:yellow;">eyawr [ɛ.jawr]</span>
Line 30: Line 30:
  
 
|-
 
|-
| <code><nowiki>(\S)*y(\S)*\s(\[)[^\s^j]*(\])</nowiki></code>
+
| <code><nowiki>\S*y\S*\s\[\S*y\S*\]</nowiki></code>
 
||
 
||
 
  ayoeru [aj.o.ɛ.ɾu]
 
  ayoeru [aj.o.ɛ.ɾu]
 
  <span style="background-color:yellow;">awngeyä [awŋɛ.yä]</span>
 
  <span style="background-color:yellow;">awngeyä [awŋɛ.yä]</span>
 +
<span style="background-color:yellow;">pefya [pε.fya]</span>
 +
pey [pɛj]
 
||
 
||
finds y in square brackets where a j should be
+
finds false y in square brackets
  
 
|-
 
|-
| <code><nowiki>(\S)(\S)*\s(\[)[^\s^\u026A]*(\])</nowiki></code>
+
| <code><nowiki>\S*\s\[\S*\u2019\S*\]</nowiki></code>
 +
||
 +
<span style="background-color:yellow;">’awkx [Ɂawk’]</span>
 +
''but'':
 +
’awkx [Ɂawkʼ]
 +
||
 +
finds false ’ [U+2019] in square brackets (!= ʼ [U+02BC])
 +
 
 +
|-
 +
| <code><nowiki>\S*ì\S*\s\[[^\s^\u026A]*\]</nowiki></code>
 
||
 
||
 
  i [i]
 
  i [i]
Line 44: Line 55:
 
  <span style="background-color:yellow;">ì [x]</span>
 
  <span style="background-color:yellow;">ì [x]</span>
 
  sì [sɪ]
 
  sì [sɪ]
 +
''but:''
 +
tìng [tŋɪ]
 +
tìng [tɪɪŋ]
 
||
 
||
finds strings with an ì in the beginning but no ɪ [U+026A] in square brackets
+
finds strings with an ì in the beginning but no ɪ [U+026A] in square brackets (no ultimate solution)
 
|-
 
|-
 
|}
 
|}

Revision as of 10:15, 12 February 2010

Kaltxì ma lertu leNa'viyä tìnumeyä. Tstxo oeyä lu okrìsti mì awngeyä plltxetseng. New oe livu lesrung tsatseng tsun oe.

Rutxe, eyawr si tìkeyawrit oeyä frakrr ayngal run.

notes

regex
expression example description
\[\S*\u0027\S*\]
eo [ˈɛ.o]
... [']
px [pʼ]

finds ' in square brackets

\S*\s\[\S*(r[^\s^\u0329]\S*|r)\]
eyawr [ɛ.jawr]
vaykrr [vaj.kr̩ː]
virä [vi.ræ]

finds strings with an r in square brackets without a following ̩ [U+0329] like r̩ where a ɾ [U+027E] should be

\S*y\S*\s\[\S*y\S*\]
ayoeru [aj.o.ɛ.ɾu]
awngeyä [awŋɛ.yä]
pefya [pε.fya]
pey [pɛj]

finds false y in square brackets

\S*\s\[\S*\u2019\S*\]
’awkx [Ɂawk’]
but:
’awkx [Ɂawkʼ]

finds false ’ [U+2019] in square brackets (!= ʼ [U+02BC])

\S*ì\S*\s\[[^\s^\u026A]*\]
i [i]
ì [ɪ]
ì [x]
sì [sɪ]
but:
tìng [tŋɪ]
tìng [tɪɪŋ]

finds strings with an ì in the beginning but no ɪ [U+026A] in square brackets (no ultimate solution)