Solved
Forum Discussion
rraghvani
Champion Level 3
3 years agoIn Python, it will output the results like so
import re
re.findall(r'\d+', "hello 42 I'm a 32 string 30")
> ['42', '32', '30']
but TestComplete won't print the array ['42', '32', '30'] in Log.Message(), which is annoying!