Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文字列内の最後から 2 番目の文字を取得するにはどうすればよいですか? aaaから取得するために使用したいwww.example.com/example/abc/aaa
aaa
www.example.com/example/abc/aaa
私は正規表現が好きです:
import re p = re.compile('a') all_positions = [oMatch.span() for oMatch in p.finditer(sText)] second_last_position_span = all_positions[-2] second_last_position_start_index = second_last_position_span[0]