Python Forum
Combining two strings together (not concatenation)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Combining two strings together (not concatenation)
#4
Then I think you are really over complicating this. When the second string has a 3, the combined string should have a 3. Otherwise the combined string should have what the first string has.

So loop through the indexes. If the second string's character at that index is '3', add '3' to the combined string. Otherwise take whatever is at that index in the current string, and add that to the combined string.

Really, it would be better to do this by zipping together the two strings, but I'm trying to keep it basic.
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply


Messages In This Thread
RE: Combining two strings together (not concatenation) - by ichabod801 - Mar-28-2019, 06:36 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries sawtooth500 14 1,626 Apr-24-2024, 01:42 AM
Last Post: sawtooth500
  FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries i sawtooth500 3 3,013 Mar-22-2024, 03:08 AM
Last Post: deanhystad
  Trying to understand strings and lists of strings Konstantin23 2 938 Aug-06-2023, 11:42 AM
Last Post: deanhystad
  Splitting strings in list of strings jesse68 3 1,922 Mar-02-2022, 05:15 PM
Last Post: DeaD_EyE
  String concatenation in SQL update statement hammer 3 1,688 Feb-24-2022, 08:00 PM
Last Post: hammer
  f string concatenation problem growSeb 3 2,383 Jun-28-2021, 05:00 AM
Last Post: buran
  Concatenation ?? ridgerunnersjw 1 1,819 Sep-26-2020, 07:29 PM
Last Post: deanhystad
  Finding multiple strings between the two same strings Slither 1 2,636 Jun-05-2019, 09:02 PM
Last Post: Yoriz
  Regarding concatenation of a list to a string Kedar 2 22,929 Aug-19-2018, 12:57 PM
Last Post: ichabod801
  lists, strings, and byte strings Skaperen 2 4,362 Mar-02-2018, 02:12 AM
Last Post: Skaperen

Forum Jump:

User Panel Messages

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