This works (not using an RE):
p1 = $analysis.search(“the”, ‘1.0’, stopindex=‘end’)
I want to use a regular expression in the search:
p1 = $analysis.search("[a-z][A-Z]", ‘1.0’, stopindex=‘end’,
regexp=‘True’)
but that fails “in `search’: wrong number of arguments (4 for 2…3)”
The equivalent line that works fine in Python/TkText is:
p1 = st.search("[a-z][A-Z]", ‘1.0’, stopindex=END, regexp=True)
My question: how do I specify I am using a regular expression when
searching a Ruby TkText box. Thanks.