Hi,
I have the following in my Open Object REXX script in Windows and I would like to know how I can make the search case-insensitive?
if left(line.i, 9) = "<!DOCTYPE" then
if pos("<errorCode>", line.k) > 0 then say line.k
Here I want to make the search case insensitive of the strings doctype and errorcode in the source file.
How can I achieve this? Any help will be appreciated.
Thanks and regards,
TR
I have the following in my Open Object REXX script in Windows and I would like to know how I can make the search case-insensitive?
if left(line.i, 9) = "<!DOCTYPE" then
if pos("<errorCode>", line.k) > 0 then say line.k
Here I want to make the search case insensitive of the strings doctype and errorcode in the source file.
How can I achieve this? Any help will be appreciated.
Thanks and regards,
TR