Extract domain from text: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

24 December 2025

12 May 2025

28 March 2025

  • curprev 15:2115:21, 28 March 2025Planetoid talk contribs 2,028 bytes +1,201 No edit summary undo
  • curprev 15:1915:19, 28 March 2025Planetoid talk contribs 827 bytes +125 No edit summary undo
  • curprev 15:1815:18, 28 March 2025Planetoid talk contribs 702 bytes +702 Created page with "Extract the domain part from URLs in article content == Using Google Sheets to extract domains == Use Google Spreadsheet [https://support.google.com/docs/answer/3098244?hl=en REGEXEXTRACT] function <pre> =REGEXEXTRACT(A1, "(http[s]?\://[^/]+)") </pre> Input: <pre> Yahoo! News https://tw.news.yahoo.com/abc </pre> Output: <pre> https://tw.news.yahoo.com </pre> Explanation: * Domain refers to text that starts with <nowiki>http://</nowiki> or <nowiki>https://</nowiki>, f..."