how can I replace the indication of page numbers in the citations: S.
with a colon (:
)
example:
x = 'Laut Durkheim ist ein "soziologischer Tatbestand [...] individuellen ?u?erungen unabh?ngiges Eigenleben besitzt" (Durkheim 1984, S. 115).'
-> '[...] (Durkheim 1984: 115).'
x = x.replace('S', '')
print(x)
Laut Durkheim ist ein "soziologischer Tatbestand [...] individuellen ?u?erungen unabh?ngiges Eigenleben besitzt" (Durkheim 1984, . 115).
x = x.replace('.', ':')
print(x)
Laut Durkheim ist ein "soziologischer Tatbestand [:::] individuellen ?u?erungen unabh?ngiges Eigenleben besitzt" (Durkheim 1984, : 115):
The first part removes the 'S' from the citation. The second part removes every dot in the citation. It should just remove the dot within the brace.
question from:https://stackoverflow.com/questions/65644105/how-to-replace-a-special-character