Spaces:
Sleeping
Sleeping
File size: 738 Bytes
c8210cf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
export const getQueryString = (search: string, name: string) => {
if (!search) return "";
const reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
const result = search.substring(1).match(reg);
if (result != null) return result[2];
return "";
};
export const isInWhiteList = (url: string = "", list: string[] = []) => {
const baseUrl = url.split("?")[0];
for (let whiteApi of list) {
if (baseUrl.endsWith(whiteApi)) {
return true;
}
}
return false;
};
export const replaceStr = (str: string) => {
return str.replace(/\[\[(\d+)\]\]/g, (match: any, number: any) => {
// 创建一个带有class为'fnn2'的span元素,并将数字作为文本内容
return `<i class='f'>${number}</i>`;
});
};
|