第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

獲取字符前的部分子串

獲取字符前的部分子串

拉丁的傳說(shuō) 2023-05-25 15:35:45
我有一個(gè)網(wǎng)址,像這樣:https://www.example.com/exampletitle21sep11oct2020/index.html我需要的部分是在最后一個(gè)和倒數(shù)第二個(gè)“/”字符之間。但我不需要整個(gè)部分,我特別需要最后一個(gè)“/”字符之前的最后日期。如您所見(jiàn),有兩個(gè)日期緊挨著,它們之間沒(méi)有分隔符,因此很難使用substring或indexOf方法。更困難的是,第一個(gè)日期只包含日和月,而最后一個(gè)日期包含整個(gè)日期。有什么方法可以讓我從此網(wǎng)址中提取最后一個(gè)“/”字符之前的最后日期嗎?
查看完整描述

4 回答

?
慕村225694

TA貢獻(xiàn)1880條經(jīng)驗(yàn) 獲得超4個(gè)贊

使用正則表達(dá)式,您可以獲得第二個(gè)日期,如下所示:


const regex = /\/(?:.*?(\d{1,2}\w{3}\d{0,4}))\/.*?$/;


const [, date] = regex.exec("https://www.example.com/exampletitle21sep11oct2020/index.html");

console.log({ date })


const regex = /\/(?:.*?(\d{1,2}\w{3}\d{0,4}))\/.*?$/;


const [, date] = regex.exec("https://www.example.com/exampletitle21sep9oct2020/index.html");

console.log({ date });

console.log(regex.exec("https://www.example.com/exampletitle21sep9oct/index.html")[1])


查看完整回答
反對(duì) 回復(fù) 2023-05-25
?
30秒到達(dá)戰(zhàn)場(chǎng)

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超6個(gè)贊

您可以找到并解析包含以下模式的路徑:


^? ? ? ? ?Line start

.+? ? ? ? One or more of anything

(\d{2})? ?2-digit date

(\w{3})? ?3-letter month (lowercase)

(\d{2})? ?2-digit date

(\w{3})? ?3-letter month (lowercase)

(\d{4})? ?4-digit year

$? ? ? ? ?Line end

例子

我用moment來(lái)處理日期解析。



const expression = /^.+(\d{2})(\w{3})(\d{2})(\w{3})(\d{4})$/;

const format = 'DD MMM YYYY';

const toTitleCase = (str) => str.charAt(0).toUpperCase() + str.slice(1);


const parseDates = (path) => {

? const url? ? = new URL(path),

? ? ? ? tokens = url.pathname.split('/'),

? ? ? ? found? = tokens.find(token => token.match(expression));

? if (!found) return null;

? const [

? ? , startDate, startMonth, endDate, endMonth, year

? ] = found.match(expression);

? return {

? ? start : moment(`${startDate} ${toTitleCase(startMonth)} ${year}`, format),

? ? end? ?: moment(`${endDate} ${toTitleCase(endMonth)} ${year}`, format)

? };

};


const dates = parseDates('https://www.example.com/exampletitle21sep11oct2020/index.html');


console.log(dates);

<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js"></script>

展開片段


查看完整回答
反對(duì) 回復(fù) 2023-05-25
?
梵蒂岡之花

TA貢獻(xiàn)1900條經(jīng)驗(yàn) 獲得超5個(gè)贊

僅使用一個(gè)正則表達(dá)式,一切都會(huì)簡(jiǎn)單得多:


var url = 'https://www.example.com/exampletitle21sep11oct2020/index.html'


var res = url.match( /.*?(\d+[a-z]+\d{4})\/.*?$/i );

// res === [ "https://www.example.com/exampletitle21sep11oct2020/index.html", "11oct2020" ]

var endDate = res[1];

// endDate === "11oct2020"

或(但“exampletitle”不得以數(shù)字結(jié)尾):


var res = url.match( /.*?(\d+[a-z]+)(\d+[a-z]+)(\d{4})\/.*?$/i );

// [ "https://www.example.com/exampletitle21sep11oct2020/index.html", "21sep", "11oct", "2020" ]

或者:


var res = url.match( /.*?(\d+)([a-z]+)(\d+)([a-z]+)(\d{4})\/.*?$/i );

// [ "https://www.example.com/exampletitle21sep11oct2020/index.html", "21", "sep", "11", "oct", "2020" ]

但是,如果您知道日期始終是 2 位數(shù)字(始終是“01”,而不是“1”),則“exampletitle”可以是任何字符串:


var res = url.match( /.*?(\d{2}[a-z]+\d{4})\/.*?$/i );

var res = url.match( /.*?(\d{2}[a-z]+)(\d+[a-z]+)(\d{4})\/.*?$/i );

var res = url.match( /.*?(\d{2})([a-z]+)(\d+)([a-z]+)(\d{4})\/.*?$/i );


查看完整回答
反對(duì) 回復(fù) 2023-05-25
?
狐的傳說(shuō)

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超3個(gè)贊

試試這個(gè)更新


const url = "https://www.example.com/exampletitle21sep11oct2020/index.html";

const urlData = url.split('/');

const datePart = urlData[urlData.length-2];

const res = datePart.slice(-9); <-- this will give you "11oct2020" -->


查看完整回答
反對(duì) 回復(fù) 2023-05-25
  • 4 回答
  • 0 關(guān)注
  • 196 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)