Python Forum
[SOLVED] [BeautifulSoup] Turn select() into comma-separated string?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[SOLVED] [BeautifulSoup] Turn select() into comma-separated string?
#1
Hello,

I found no example in the tutorial and other sources.

With a select(), I need to find all the elements that match, and turn the results into a comma-separated string, eg. "Author 1, Author 2, Author 3".

I do find the elements, but fail turning them into to a string:
authors_select = soup.select("a[href*=authors]") #OK
authors = ','.join(authors_select)
authors = ','.join(map(str, soup.select("a[href*=authors]"))) 
authors = ','.join(map(str, soup.select("a[href*=authors]").text)) 
print("Authors=",authors)
Thank you.

---
Edit: Found a way

delim = ','
authors = ''
for str in soup.select("a[href*=authors]"):
	authors += (str.text + delim)				
print("Authors=",authors)
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [SOLVED] [BeautifulSoup] Why attribute not found? Winfried 0 745 Mar-11-2023, 10:00 PM
Last Post: Winfried
  How can histogram bins be separated and reduce number of labels printed on x-axis? cadena 1 882 Sep-07-2022, 09:47 AM
Last Post: Larz60+
  [SOLVED] [BeautifulSoup] Why does it turn inserted string's brackets into </>? Winfried 0 1,509 Sep-03-2022, 11:21 PM
Last Post: Winfried
  [SOLVED] [Beautifulsoup] Find if element exists, and edit/append? Winfried 2 4,282 Sep-03-2022, 10:14 PM
Last Post: Winfried
  [SOLVED] [BeautifulSoup] How to get this text? Winfried 6 1,975 Aug-17-2022, 03:58 PM
Last Post: Winfried
  Inserting line feeds and comments into a beautifulsoup string arbiel 1 1,182 Jul-20-2022, 09:05 AM
Last Post: arbiel
  Adding string after every 3rd charater [SOLVED] AlphaInc 2 1,248 Jul-11-2022, 09:22 AM
Last Post: ibreeden
  How to format Excel column with comma? dee 0 1,360 Jun-13-2022, 10:11 PM
Last Post: dee
  decimal comma DPaul 9 2,268 Feb-22-2022, 12:25 PM
Last Post: DeaD_EyE
Question [SOLVED] Delete specific characters from string lines EnfantNicolas 4 2,202 Oct-21-2021, 11:28 AM
Last Post: EnfantNicolas

Forum Jump:

User Panel Messages

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