I have one list/array like this.
ch = [ eretail, retail, fax, xerox ]
I tried fetch strings using single/multiple letters.
for example, i sent 'e' letter as input. it will search entire string, incase it will match with string, the string will display as output
examples:
1)Input: e
output: eretail
retail
xerox
2)Input: x
output: fax
xerox
3)Input: o
output: xerox
4)Input: retail
output: eretail
retail
I need the output like above.