हाइपरलिंक किए गए सेल से लिंक टेक्स्ट और URL निकालें


17

मान लीजिए कि मेरे पास सेल A1 में हाइपरलिंक है: =hyperlink("stackexchange.com", "Stack Exchange")

शीट में अन्यत्र, मैं ऐसे फॉर्मूले रखना चाहूँगा जो लिंक पाठ और URL को A1 से अलग से प्राप्त करें। मुझे बस लिंक टेक्स्ट प्राप्त करने का एक तरीका मिला:

=""&A1 

(खाली स्ट्रिंग के साथ संयोजन)। यह "स्टैक एक्सचेंज", अनलिंक किया जाता है।

URL (stackexchange.com) कैसे प्राप्त करें?


1
यहाँ एक स्क्रिप्ट है जो यह कर सकती है: productforums.google.com/forum/# ​​.topic
docs

3
आगंतुकों के लिए ध्यान दें: यदि आप URL को एक स्वरूपित लिंक से निकालने का एक तरीका ढूंढ रहे हैं जो कि ऐसा नहीं है =hyperlink()(कुछ जिसे एक शीट में चिपकाया गया था), तो क्षमा करें: एक नहीं है। शुरू करने के लिए स्प्रेडशीट में समृद्ध पाठ को पेस्ट न करना सबसे अच्छा है।


1
अगर आप html में स्प्रैडशीट डाउनलोड करते हैं, तो आप 2 आगंतुकों पर ध्यान दें। या बल्कि, वे आसानी से html से निकाले जा सकते हैं .... आदर्श नहीं है, लेकिन यह एक तरीका है।
अल्बर्ट

जवाबों:


10

रुबेन के जवाब को देखने के बाद मैंने इस कार्य के लिए एक अलग कस्टम फ़ंक्शन लिखने का फैसला किया, जिसमें निम्न विशेषताएं हैं:

  1. पैरामीटर को एक सीमा के रूप में प्रदान किया जाता है, न कि एक स्ट्रिंग के रूप में: अर्थात, =linkURL(C2)इसके बजाय =linkURL("C2")। यह इस बात के अनुरूप है कि पैरामीटर आमतौर पर कैसे काम करते हैं, और संदर्भों को अधिक मजबूत बनाता है: यदि कोई शीर्ष पर एक नई पंक्ति जोड़ता है तो उन्हें बनाए रखा जाएगा।
  2. ऐरे का समर्थन किया जाता है: इस रेंज में पाए जाने वाले =linkURL(B2:D5)सभी hyperlinkकमांडों के यूआरएल (और अन्य स्थानों के लिए रिक्त सेल)।

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 के लिंकुरल सूत्र हैं। वैकल्पिक रूप से, 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"} नोटेशन का उपयोग करता है।
वातावले २०'१

2

मान लें कि सेल में हाइपरलिंक कवक है;

बस =hyperlink"हाइपरलिंक" या "xyz" खोजें और बदलें

फिर आपको उन्हें अलग करने के लिए बस कुछ डेटा की सफाई करनी होगी। कॉलम या =splitफ़ंक्शन के लिए विभाजित पाठ का उपयोग करने का प्रयास करें । दोनों ,एक सीमांकक के रूप में उपयोग करेंगे।

फिर से "[दोहरे कोट्स] को [कुछ भी नहीं] से बदल दें

लगता है इस तरह से सरल ..

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.