我仍然試圖在排列匹配上工作,我不知道是否有人有更好的方法來做到這一點。我想以任何順序匹配數組中的所有模式,即匹配數組中的項(字符串或其他對象)的排列。例如,如果數組是(1,2,3),那麼如果一個字符串以任意順序包含1和2以及3,則爲真;即如果一個字符串包含(1,2,3)的排列,則爲真。 我現在是這樣的: my @x = < one eins uno yi two zwei dos er one o
問題:我想根據具有變量的範圍運行匹配函數。 範圍:目標是在行x和最後一行之間的列A中找到單詞「awesome」的第一個實例;並返回行號 案例: LastRow = Sheets("demo").Cells(Rows.Count, 1).End(xlUp).Row
For x = 2 To LastRow
Dim rng as Range
Set rng = "A" & x & ":A" &
我想從一個字符串中獲取JavaScript數組,並將其切成兩半。 實施例: // From this:
var myStr = 'cocacola';
// To this:
var myArray = ['coca', 'cola'];
我嘗試以下方法: var myStr = 'cocacola';
var strHalf = myStr.length/2;
/
我有這樣data = ['This is the sentence "Hello" by writer "MK"', '2 Worlds [Harry]'] 字符串列表,我想只提取"Hello,這裏就是我所做的: import re
s = re.match('This is the sentence (.*) by writer', data[0])
s
但是,相反的"Hello ,我得