Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
matchw
#1
Why ret 0?


Code:
Copy      Help
str s="This is a test"
out matchw(s "t??t")
out matchw(s "t*t")
#2
it is case sensative.

Code:
Copy      Help
str s="This is a test"
out matchw(s "t??t")
out matchw(s "T*t")
#3
test is lcase
#4
if you are looking for the word test it would look like this.
Code:
Copy      Help
str s="This is a test"
out matchw(s "*t??t")
out matchw(s "*t*t")
#5
Ok. Thanks.


Forum Jump:


Users browsing this thread: 1 Guest(s)