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.
単語が s で終わるか、'単語が s で終わる場合を除いて、文字列から のすべての出現を削除します。他の出現はすべて削除されます。s''s'
'
s'
's
例:
Andrea's -Stays as is Kids' - stays as is 'Kids' --> Kids Ki'd's' --> Kids'
私がこれまでに思いついたこと:
\'(?!s )
これは最初の例と一致し、それを無視します。
ここで動作しています
残りに問題がある
'([^'\s]+)'
これを試すことができます.Replace by \1.See demo.
\1
https://regex101.com/r/oF9hR9/2#python