在Python中查找指定字符串,你可以使用以下几种方法:
1. `find()` 方法:
查找子字符串在字符串中第一次出现的位置。
如果找到,返回子字符串的起始索引;如果找不到,返回-1。
s = 'Hello, World!'substring = 'o'index = s.find(substring)if index != -1:print(f'The character \'{substring}\' was found at index {index}.')else:print(f'The character \'{substring}\' was not found in the string.')
2. `index()` 方法:
类似于 `find()`,但如果子字符串不存在,会抛出 `ValueError` 异常。
s = 'Hello, World!'substring = 'o'try:index = s.index(substring)print(f'The character \'{substring}\' was found at index {index}.')except ValueError:print(f'The character \'{substring}\' was not found in the string.')
3. `rfind()` 方法:
从字符串末尾开始查找子字符串最后一次出现的位置。

4. `rindex()` 方法:
从字符串末尾开始查找子字符串第一次出现的位置。
5. `in` 关键字:
检查子字符串是否存在于字符串中,返回布尔值。
s = 'Hello, World!'substring = 'o'if substring in s:print(f'The character \'{substring}\' was found in the string.')else:print(f'The character \'{substring}\' was not found in the string.')
如果需要更复杂的匹配模式,可以使用正则表达式。
import res = 'The price is $10.99'pattern = r'\$\d+\.\d+'result = re.search(pattern, s)if result:print(f'The price is {result.group()}')else:print('No match found')
选择哪种方法取决于你的具体需求
