gpt4 book ai didi

javascript - 谷歌脚本中是否存在现有方法来检查 A1 符号是否在第二个 A1 符号的范围内

转载 作者:行者123 更新时间:2023-11-30 14:24:17 25 4
gpt4 key购买 nike

我目前正在为此自己编写一个函数,无法在谷歌文档中找到现有函数。

但我想知道,这太标准了,应该有一个默认的方法来做到这一点。

我只想检查 A1 符号是否在第二个 A1 符号的范围内。

示例伪代码:

var range = "A33";
isWithinA1Range(range, "A3:A"); //returns true
isWithinA1Range(range, "A:A"); //returns true
isWithinA1Range(range, "A33"); //returns true
isWithinA1Range(range, "A30:B35"); //returns true
isWithinA1Range(range, "A1:A20"); //returns false
isWithinA1Range(range, "B:B"); //returns false

这个有默认函数吗?

最佳答案

我们可以使用正则表达式来分隔字符串并单独测试它们。试试这个示例:

/**
* @return {boolean} Returns TRUE If the given a1Notation is in the rangeToCheck
* @param {"A1"} a1Notation The range in A1Notation
* @param {"A1:B1"} rangeToCheck The range in which to check the A1 Notation
*/
function withinRange(a1Notation, rangeToCheck) {
var input = Array.prototype.map.call(arguments, function(e) {
return e.toUpperCase();
});
var rangeArgs = /^([A-Z]+)?(\d+)?:([A-Z]+)?(\d+)?$/.exec(input[1]);
var a1NotationArgs = /^([A-Z]+)(\d+)$/.exec(input[0]).map(function(e, i) {
return i == 1 ? (' ' + e).substr(-2) : e * 1;
});
/* If range arguments are missing(like missing end column in "A1:1"), add arbitrary arguments(like "A1:ZZ1")*/
rangeArgs = rangeArgs.map(function(e, i) {
return e === undefined ?
i % 2 === 0 ?
i > 2 ?
Infinity : -Infinity
: i > 2 ?
'ZZ' : ' A'
: i % 2 === 0 ?
e * 1 : (' ' + e).substr(-2);
});
console.log(rangeArgs, a1NotationArgs);
return (a1NotationArgs[1] >= rangeArgs[1] &&
a1NotationArgs[1] <= rangeArgs[3] &&
a1NotationArgs[2] >= rangeArgs[2] &&
a1NotationArgs[2] <= rangeArgs[4]);
}

上面最多支持 2 个字母列。

关于javascript - 谷歌脚本中是否存在现有方法来检查 A1 符号是否在第二个 A1 符号的范围内,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52192912/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com