Search found 34 matches

by joeko
10 Feb 2017 22:30
Forum: User Help / Bug Reports
Topic: Liste mit namen und adressen anlegen und abrufen ?
Replies: 4
Views: 10296

Re: Liste mit namen und adressen anlegen und abrufen ?

hallo martin,
hilfreich ist das natürlich aber ein konkretes beispiel wäre natürlich super :-)
habe zwar eine grobe idee aber bin doch etwas entfernt davon das umzusetzen.
die spracheingabe läuft über autovoice......

wenn du also ein konkretes beispiel hast dann gerne :-)
by joeko
10 Feb 2017 11:51
Forum: User Help / Bug Reports
Topic: Liste mit namen und adressen anlegen und abrufen ?
Replies: 4
Views: 10296

Liste mit namen und adressen anlegen und abrufen ?

Hallo, um mein navi (sygic) mit sprache zu bedienen suche ich nach einer möglichkeit favoriten in form von namen und adresse anzulegen. später soll dann per sprache der name eingegeben und die dazugehörige adresse an sygic weiter gegeben werden. z.b. spracheingabe: "peter" gibt dann "peterstrasse 2 ...
by joeko
08 Feb 2017 19:40
Forum: User Help / Bug Reports
Topic: is there a way to convert "my house" to "My House" ?
Replies: 11
Views: 25916

Re: is there a way to convert "my house" to "My House" ?

perfekt :-)
many thx for your help :-)

i dont know how this works but it works :-)

if you want to explain it so that i also understand it.....
by joeko
08 Feb 2017 18:46
Forum: User Help / Bug Reports
Topic: is there a way to convert "my house" to "My House" ?
Replies: 11
Views: 25916

Re: is there a way to convert "my house" to "My House" ?

great it works :-)
but the code change also the numbers. is it possible that the numbers stay untouched ?
by joeko
08 Feb 2017 08:49
Forum: User Help / Bug Reports
Topic: is there a way to convert "my house" to "My House" ?
Replies: 11
Views: 25916

Re: is there a way to convert "my house" to "My House" ?

i see :-)
thx for the link and help

but i dont understand enough about it to find the bug in this code...
i get this message after convert from "test text" to "nullTest text"

what i have to change in the code to fix that so that i get "Test Text"?
by joeko
07 Feb 2017 21:27
Forum: User Help / Bug Reports
Topic: is there a way to convert "my house" to "My House" ?
Replies: 11
Views: 25916

Re: is there a way to convert "my house" to "My House" ?

hi,
thx for help

i tried this code but only the first word is like i need.
the idea is not really clear because i am new in this ...world.
do you know where the bug is in this code ?

what do this "r = split(t, '(?<=\W)|(?=\W)');"
splitting yes but what do the "W" ?
by joeko
07 Feb 2017 13:04
Forum: User Help / Bug Reports
Topic: is there a way to convert "my house" to "My House" ?
Replies: 11
Views: 25916

Re: is there a way to convert "my house" to "My House" ?

thx for reply,
replaceall convert every letter ?

can you write here how i split, convert to uppercase and set to a new variable ?
by joeko
06 Feb 2017 18:46
Forum: User Help / Bug Reports
Topic: is there a way to convert "my house" to "My House" ?
Replies: 11
Views: 25916

is there a way to convert "my house" to "My House" ?

i am looking for an way to convert an variable to uppercase. every word in uppercase. for example: name = My Name Is Mr Gorden and not my name is mr gordon and so on. the first word or letter is not a problem but all first letters ? maybe splitting the variable and convert ? the numbers of words in ...
by joeko
05 Feb 2017 22:04
Forum: User Help / Bug Reports
Topic: Der erste Buchstabe groß geschrieben im Ausgabetext ?
Replies: 6
Views: 15426

Re: Der erste Buchstabe groß geschrieben im Ausgabetext ?

hm, aber das geht nur für das erste wort.
läßt sich das nicht so einrichten das alle wörter groß anfangen ?
ist das so möglich ?
text2 = toUpperCase(substring(text, 0, 1)) + substring(text, 1) + (substring(text, 2, 3)) + substring(text, 3);