add -c option to control match case sensitivity
1 parent 6c26589 commit 1c46fec1611c36d24d0f398467776b2e6aaa08bf
@tundra tundra authored on 16 Jul 2020
Showing 1 changed file
View
27
xlslu.py
#####
# List Of All Legal Options - Update This When You Add More!!!!
#####
 
OPTIONSLIST = 'ahv'
OPTIONSLIST = 'achv'
 
 
#----------------------------------------------------------#
# Variables User Might Change #
# Constants & Flags
#####
 
ALLSTRINGS = False
NOCASE = False
MATCHSEP = "---> "
 
 
#####
uTable = [PROGVER,
"usage: " + PROGNAME + " [-%s]" % optionslist + " file.xls string string string ...",
" where,",
" -a require all strings to be present (AND matching)",
" -c ignore case when matching",
" -h print this help information",
" -v print version information",
" file.xls name of spreadsheet file to read",
" string ... list of strings that will trigger a match",
 
if opt == "-a":
ALLSTRINGS = True
 
if opt == "-c":
NOCASE = True
 
if opt == "-h":
Usage()
sys.exit(0)
 
 
# Check for matching strings and flag accordingly
 
for matchstring in MATCHSTRINGS:
if value.lower().count(matchstring.lower()):
 
# See if user asked for case insensitive matching
 
if NOCASE:
value = value.lower()
matchstring = matchstring.lower()
 
# Check for matches
 
if value.count(matchstring):
matched = True
matchedstrings[matchstring] = True
 
# Deal with AND Matching