patriciaxxx
Programmer
Can any one help me with ms access 2003 vba code to pull
bonjour bonjour, bonjour. Bonjour
from the following string. Note the code will need to allow for any combination of words and any number of periods (.)
Code:
{"sentences":[{"trans":"bonjour bonjour, bonjour. ","orig":"good morning good morning, good morning.","translit":"","src_translit":""},{"trans":"Bonjour","orig":"good morning","translit":"","src_translit":""}],"src":"en","server_time":3}
I currently have
Code:
StrText= Split(strText, """trans"":""")(1)
StrText= Split(strText, """,""orig")(0)
StrText= Replace(strText, "quot;", Chr(39))
Which is no good as it always stops as the first Period (.) it encounters, hence this example would return the following
bonjour bonjour, bonjour.