Python Forum
search and replace first amount of strings instances with one thing and a second amou
Thread Rating:
  • 2 Vote(s) - 2.5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
search and replace first amount of strings instances with one thing and a second amou
#2
Use the third parameter to str.replace.

>>> help(str.replace)
Help on method_descriptor:

replace(...)
    S.replace(old, new[, count]) -> str

    Return a copy of S with all occurrences of substring
    old replaced by new.  If the optional argument count is
    given, only the first count occurrences are replaced.
>>> line = "1_1__" * 20
>>> line
'1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__'
>>> line.replace("1", "2")
'2_2__2_2__2_2__2_2__2_2__2_2__2_2__2_2__2_2__2_2__2_2__2_2__2_2__2_2__2_2__2_2__2_2__2_2__2_2__2_2__'
>>> line.replace("1", "2", 10)
'2_2__2_2__2_2__2_2__2_2__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__'
>>> line.replace("1", "2", 10).replace("1", "3", 10)
'2_2__2_2__2_2__2_2__2_2__3_3__3_3__3_3__3_3__3_3__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__1_1__'
Reply


Messages In This Thread
RE: search and replace first amount of strings instances with one thing and a second amou - by nilamo - Sep-22-2017, 03:20 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Trying to understand strings and lists of strings Konstantin23 2 934 Aug-06-2023, 11:42 AM
Last Post: deanhystad
  I am confused with the key and value thing james1019 3 1,089 Feb-22-2023, 10:43 PM
Last Post: deanhystad
  Need help i just started the whole thing gabriel789 16 3,548 Sep-12-2022, 08:04 PM
Last Post: snippsat
  Replace for loop to search index position illmattic 5 1,452 Sep-03-2022, 04:04 PM
Last Post: illmattic
  Python: re.findall to find multiple instances don't work but search worked Secret 1 1,322 Aug-30-2022, 08:40 PM
Last Post: deanhystad
  Splitting strings in list of strings jesse68 3 1,918 Mar-02-2022, 05:15 PM
Last Post: DeaD_EyE
  Search multiple CSV files for a string or strings cubangt 7 8,531 Feb-23-2022, 12:53 AM
Last Post: Pedroski55
  i making a terminal sign up website thing Kenrichppython 1 1,801 Nov-04-2021, 03:57 AM
Last Post: bowlofred
  Get amount of bytes in a file chesschaser 1 1,658 Aug-23-2021, 03:24 PM
Last Post: deanhystad
  use thing before self sylvanas 3 2,466 Jul-21-2021, 04:54 PM
Last Post: sylvanas

Forum Jump:

User Panel Messages

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