In Java ,i have this line from a log file :
Hello "My name is Vader"
i need to take as a string all the words between " "
i only managed to read them as words(strings) separately, with the
matcher.nextToken()
but i need to take the whole string between " "
Thank you in advance!