Discussion:
Help - ReFind ()
(too old to reply)
BYJ_wntrsnt
2009-03-03 18:39:50 UTC
Permalink
I wrote: #ReFind("\a[a-z]+\z", j)# to detect a string wirtten in all lower case
such as holywood, but it did not find any
When I did #ReFind("\A[A-Z]+\Z", j)# it detected HOLYWOOD
Have I don something wrong with #ReFind("\a[a-z]+\z", j)# when I want to find
all lower case holywood?
GArlington
2009-03-05 16:13:32 UTC
Permalink
Post by BYJ_wntrsnt
I wrote: #ReFind("\a[a-z]+\z", j)# to detect a string wirtten in all lower case
Why are you looking for \a (as in special control char == beep?
Why "[a-z]+" does NOT do it for you?
Post by BYJ_wntrsnt
such as holywood, but it did not find any
 When I did #ReFind("\A[A-Z]+\Z", j)# it detected HOLYWOOD
 Have I don something wrong with #ReFind("\a[a-z]+\z", j)# when I want to find
all lower case holywood?
Loading...