//适用本文档ES5系统安卓 JavaScript引擎Rhino
const 字符 = {
/**
* 匹配查找字符串中的内容
* @param {string} str 需要查找的字符串
* @param {string|RegExp} searchvalue 需要查找的字符串或正则表达式
* @returns {Array|null} 成功:返回包含匹配结果的数组,失败:返回null
* @example
* // 示例1:查找字符串
* var str = "How are you doing you today?";
* var fgh = 字符.匹配查找(str, 'you');
* printl(fgh); // 输出: ["you", "you"]
*
* // 示例2:使用正则表达式查找
* var str = "How are you doing you today?";
* var fgh = 字符.匹配查找(str, /you/gi);
* printl(fgh); // 输出: ["you", "you"]
*/
匹配查找: function(str, searchvalue) {
try {
// 参数验证
if (typeof str === "undefined" || str === null) {
console.error("[字符.匹配查找] 错误:str参数未定义或为null");
return null;
}
if (typeof searchvalue === "undefined" || searchvalue === null) {
console.error("[字符.匹配查找] 错误:searchvalue参数未定义或为null");
return null;
}
// 转换为字符串
str = String(str);
// 如果searchvalue是字符串,转换为全局正则表达式
if (typeof searchvalue === 'string') {
searchvalue = new RegExp(searchvalue.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'), 'g');
}
// 如果是正则表达式但没有全局标志,添加全局标志
else if (searchvalue instanceof RegExp && !searchvalue.global) {
searchvalue = new RegExp(searchvalue.source, searchvalue.flags + 'g');
}
// 执行匹配查找操作
let matches = str.match(searchvalue);
// 如果没有找到匹配项,返回null
if (!matches || matches.length === 0) {
return null;
}
return matches;
} catch (error) {
console.error(`[字符.匹配查找] 错误:${error}`);
return null;
}
},
/**
* 匹配索引,查找字符串中内容的位置
* @param {string} str 需要查找的字符串
* @param {string|RegExp} searchvalue 需要查找的字符串或正则表达式
* @returns {Array|null} 成功:返回包含匹配位置索引的数组,失败:返回null
* @example
* // 示例1:查找字符串位置
* var str = "How are you doing you today?";
* var fgh = 字符.匹配索引(str, 'you');
* printl(fgh); // 输出: [8, 19]
*
* // 示例2:使用正则表达式查找位置
* var str = "How are you doing you today?";
* var fgh = 字符.匹配索引(str, /you/gi);
* printl(fgh); // 输出: [8, 19]
*/
匹配索引: function(str, searchvalue) {
try {
// 参数验证
if (typeof str === "undefined" || str === null) {
console.error("[字符.匹配索引] 错误:str参数未定义或为null");
return null;
}
if (typeof searchvalue === "undefined" || searchvalue === null) {
console.error("[字符.匹配索引] 错误:searchvalue参数未定义或为null");
return null;
}
// 转换为字符串
str = String(str);
// 准备正则表达式
let regex;
if (typeof searchvalue === 'string') {
// 如果是字符串,转换为正则表达式并转义特殊字符
regex = new RegExp(searchvalue.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'), 'g');
} else if (searchvalue instanceof RegExp) {
// 如果已经是正则表达式,确保有全局标志
if (!searchvalue.global) {
regex = new RegExp(searchvalue.source, searchvalue.flags + 'g');
} else {
regex = searchvalue;
}
} else {
console.error("[字符.匹配索引] 错误:searchvalue类型不正确");
return null;
}
// 查找所有匹配的索引
let indices = [];
let match;
// 重置lastIndex以确保从头开始搜索
regex.lastIndex = 0;
while ((match = regex.exec(str)) !== null) {
indices.push(match.index);
// 防止零长度匹配导致的无限循环
if (match.index === regex.lastIndex) {
regex.lastIndex++;
}
}
// 如果没有找到匹配项,返回null
if (indices.length === 0) {
return null;
}
return indices;
} catch (error) {
console.error(`[字符.匹配索引] 错误:${error}`);
return null;
}
}
};
// 示例1:使用字符串查找
var str = "How are you doing you today?";
var fgh = 字符.匹配查找(str, 'you');
printl(fgh); // 输出: ["you", "you"]
// 示例2:使用正则表达式查找
var str = "How are you doing you today?";
var fgh = 字符.匹配查找(str, /you/gi);
printl(fgh); // 输出: ["you", "you"]
// 示例3:使用字符串查找索引
var str = "How are you doing you today?";
var fgh = 字符.匹配索引(str, 'you');
printl(fgh); // 输出: [8, 19]
// 示例4:使用正则表达式查找索引
var str = "How are you doing you today?";
var fgh = 字符.匹配索引(str, /you/gi);
printl(fgh); // 输出: [8, 19]
这是一个名为字符
的对象,包含两个主要方法:
匹配查找
: 用于查找字符串中的匹配内容匹配索引
: 用于查找匹配内容在字符串中的位置
字符.匹配查找(str, searchvalue)
参数说明:
str
: 要搜索的目标字符串searchvalue
: 搜索条件,可以是字符串或正则表达式功能特点:
if (typeof str === "undefined" || str === null) {
console.error("[字符.匹配查找] 错误:str参数未定义或为null");
return null;
}
str = String(str);
if (typeof searchvalue === 'string') {
searchvalue = new RegExp(searchvalue.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'), 'g');
}
let matches = str.match(searchvalue);
字符.匹配索引(str, searchvalue)
参数说明:
功能特点:
let regex;
if (typeof searchvalue === 'string') {
regex = new RegExp(searchvalue.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'), 'g');
}
while ((match = regex.exec(str)) !== null) {
indices.push(match.index);
}
if (match.index === regex.lastIndex) {
regex.lastIndex++;
}
两个方法都包含完整的错误处理机制:
try {
// 方法主体
} catch (error) {
console.error(`[字符.xxx] 错误:${error}`);
return null;
}
代码包含四个完整的示例:
// 示例1:使用字符串查找内容
var str = "How are you doing you today?";
var fgh = 字符.匹配查找(str, 'you');
printl(fgh); // 输出: ["you", "you"]
// 示例2:使用正则表达式查找内容
var fgh = 字符.匹配查找(str, /you/gi);
printl(fgh); // 输出: ["you", "you"]
// 示例3:使用字符串查找位置
var fgh = 字符.匹配索引(str, 'you');
printl(fgh); // 输出: [8, 19]
// 示例4:使用正则表达式查找位置
var fgh = 字符.匹配索引(str, /you/gi);
printl(fgh); // 输出: [8, 19]
这段代码提供了一个完整的字符串查找解决方案,既可以获取匹配的内容,也可以获取匹配的位置,适用于各种字符串处理场景。
欢迎光临 B2B网络软件 (http://bbs.niubt.cn/) | Powered by Discuz! X3.2 |