从超链接单元格中提取链接文本和URL


17

假设我在单元格A1中有一个超链接: =hyperlink("stackexchange.com", "Stack Exchange")

在工作表的其他地方,我希望有一些公式,分别从A1获取链接文本和URL。我找到了一种只获取链接文本的方法:

=""&A1 

(与空字符串串联)。这将返回未链接的“堆栈交换”。

如何获取URL(stackexchange.com)?



3
访客请注意:如果您正在寻找一种从格式链接中提取URL的方法,而该格式链接不是=hyperlink()(已粘贴到工作表中的内容),那么抱歉:没有。最好不要将富文本粘贴到电子表格中。


1
访客注意2:如果您以html下载电子表格,则可以同时获得他们。或者更确切地说,它们很容易从html中提取出来。...不是理想的方法,但这是一种方法。
阿尔伯特2016年

Answers:


10

看到鲁宾的答案后,我决定为此任务编写一个不同的自定义函数,该函数具有以下功能:

  1. 参数是作为范围提供的,而不是作为字符串提供的:=linkURL(C2)而不是=linkURL("C2")。这与参数通常的工作方式是一致的,并且使引用更加健壮:如果有人在顶部添加新行,则将保留引用。
  2. 支持数组:=linkURL(B2:D5)返回hyperlink在此范围内找到的所有命令的URL (以及其他位置的空白单元格)。

要实现1,我不使用工作表传递的参数(这将是目标单元格的文本内容),而是解析公式=linkURL(...)本身并从中提取范围符号。

/** 
 * Returns the URL of a hyperlinked cell, if it's entered with hyperlink command. 
 * Supports ranges
 * @param {A1}  reference Cell reference
 * @customfunction
 */
function linkURL(reference) {
  var sheet = SpreadsheetApp.getActiveSheet();
  var formula = SpreadsheetApp.getActiveRange().getFormula();
  var args = formula.match(/=\w+\((.*)\)/i);
  try {
    var range = sheet.getRange(args[1]);
  }
  catch(e) {
    throw new Error(args[1] + ' is not a valid range');
  }
  var formulas = range.getFormulas();
  var output = [];
  for (var i = 0; i < formulas.length; i++) {
    var row = [];
    for (var j = 0; j < formulas[0].length; j++) {
      var url = formulas[i][j].match(/=hyperlink\("([^"]+)"/i);
      row.push(url ? url[1] : '');
    }
    output.push(row);
  }
  return output
}

效果很好,尽管有点慢。
丹妮德

从技术上讲这是可行的,但是我想知道是否有可能根据linkURL()结果创建一个新的超链接。例如=HYPERLINK(linkURL(C2),"new label")似乎对我不起作用。
skube

1
@skube这是我对该函数进行编码的副作用:它只能单独使用,不能与其他函数一起使用。您仍然可以新建一个超链接,=hyperlink(D2, "new label")因为D2具有linkURL公式。或者,使用Rubén的自定义函数。

3

简短答案

使用自定义函数来获取单元格公式内带引号的字符串。

Yisroel Tech 在评论中共享的外部帖子包括一个脚本,该脚本用相应公式中第一个带引号的字符串替换了有效范围内的每个公式。以下是该脚本的自定义功能的改编。

/** 
 * Extracts the first text string in double quotes in the formula
 * of the referred cell
 * @param {"A1"}  address Cell address.
 * @customfunction
 */
function FirstQuotedTextStringInFormula(address) {
  // Checks if the cell address contains a formula, and if so, returns the first
  // text  string in double quotes in the formula.
  // Adapted from https://productforums.google.com/d/msg/docs/ymxKs_QVEbs/pSYrElA0yBQJ

  // These regular expressions match the __"__ prefix and the
  // __"__ suffix. The search is case-insensitive ("i").
  // The backslash has to be doubled so it reaches RegExp correctly.
  // https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/RegExp

  if(address && typeof(address) == 'string'){

    var prefix = '\\"';
    var suffix = '\\"';
    var prefixToSearchFor = new RegExp(prefix, "i");
    var suffixToSearchFor = new RegExp(suffix, "i");
    var prefixLength = 1; // counting just the double quote character (")

    var ss = SpreadsheetApp.getActiveSpreadsheet();
    var cell, cellValue, cellFormula, prefixFoundAt, suffixFoundAt, extractedTextString;

    cell = ss.getRange(address);
    cellFormula = cell.getFormula();

    // only proceed if the cell contains a formula
    // if the leftmost character is "=", it contains a formula
    // otherwise, the cell contains a constant and is ignored
    // does not work correctly with cells that start with '=
    if (cellFormula[0] == "=") {

      // find the prefix
      prefixFoundAt = cellFormula.search(prefixToSearchFor);
      if (prefixFoundAt >= 0) { // yes, this cell contains the prefix
        // remove everything up to and including the prefix
        extractedTextString = cellFormula.slice(prefixFoundAt + prefixLength);
        // find the suffix
        suffixFoundAt = extractedTextString.search(suffixToSearchFor);
        if (suffixFoundAt >= 0) { // yes, this cell contains the suffix
          // remove all text from and including the suffix
          extractedTextString = extractedTextString.slice(0, suffixFoundAt).trim();

          // store the plain hyperlink string in the cell, replacing the formula
          //cell.setValue(extractedTextString);
          return extractedTextString;
        }
      }
    } else {
      throw new Error('The cell in ' + address + ' does not contain a formula');
    }
  } else {
    throw new Error('The address must be a cell address');
  }
}

1
此函数对我来说更好,因为它可以在其他表达式中使用。顺便说一下,它使用{“ A1”}表示法来寻址单元。
vatavale

2

假设该单元具有超链接功能;

只需查找并替换=hyperlink为“ hyperlink”或“ xyz”

然后,您只需要进行一些数据清理就可以将它们分开。尝试使用将文本拆分为列或=split函数。两者都将,用作分隔符。

再次"用[nothing] 代替[双引号]

似乎这种方式更简单。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.