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.
申し訳ありませんが、私は長い間正規表現に慣れていません。
この種の文字列 /projects/myproject/ から、次の 2 つの要素 ( projects、myproject )を取得するにはどうすればよいですか?
出力:
print group1 : 'projects' print group2 : 'myproject'
ありがとう
my_str = "/projects/myproject/" matches = re.findall("/(.+?)/(.+)/",my_str) print matches #prints ['projects','myproject']