Python Forum
Removing leading whitespaces
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Removing leading whitespaces
#2
You have spaces around the word "paragraph", and nothing happens to them. I'm going to replace them with dots here just for visibility. But you might start with the string A.paragraph.B. After substitution that becomes A.\n\n.B.

Printed, that would be:
Output:
A. .B
You could capture optional whitespace around the keywords as part of your regex and that might improve things. Or you could remove any whitespace following a newline if you never want any indents (intentional or not).
Reply


Messages In This Thread
Removing leading whitespaces - by palladium - Mar-24-2023, 12:56 PM
RE: Removing leading whitespaces - by bowlofred - Mar-24-2023, 04:15 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Removing leading\trailing spaces azizrasul 8 2,769 Oct-23-2022, 11:06 PM
Last Post: azizrasul
  How to retrieve records in a DataFrame (Python/Pandas) that contains leading or trail mmunozjr 3 1,785 Sep-05-2022, 11:56 AM
Last Post: Pedroski55
  -i option changes sys.path (removes leading empty string '') markanth 6 2,023 Aug-26-2022, 09:27 PM
Last Post: markanth
  Parsing xml file deletes whitespaces. How to avoid it? Paqqno 0 1,060 Apr-01-2022, 10:20 PM
Last Post: Paqqno
  How to keep leading zeros with pandas? eeps24 1 6,605 May-20-2020, 07:51 PM
Last Post: deanhystad
  Cancelling 'open directory' leading to crash Fairbz_ 1 2,205 May-08-2020, 03:14 PM
Last Post: DPaul
  leading zero number formatting RedSkeleton007 3 3,967 Jan-27-2019, 04:56 PM
Last Post: RedSkeleton007
  Probs with leading zeros falling away :-) Badosc 2 2,898 Dec-04-2018, 08:57 PM
Last Post: Badosc
  leading zeros kerzol81 7 7,141 Apr-23-2017, 03:53 PM
Last Post: kerzol81
  program is related to leading zeros amrita 3 3,854 Apr-13-2017, 06:57 AM
Last Post: wavic

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020