Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python check character exists in string

string = 'ex@mple'

if '@' in string:
	return True

if '@' not in string:
	return False
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #check #character #exists #string
ADD COMMENT
Topic
Name
3+8 =