我有以下字符串。
/edit/120/test or /edit/120/test1, ... etc
我想找120或者像这样的字符串,我怎么能用javascript找到它。
答案 0 :(得分:0)
正如大卫所说,有几种方法可以做到这一点。鉴于您要查找的字符串始终位于“/ edit /”和“/”之间,后跟任何文本,以下是我将如何操作:
CompletableFuture.supplyAsync()
实际上,老实说,我太懒了。以下是我真正做到的事情:
var target = "/edit/120/test" // for example
var result = target.substring(6) // removes the first 6 characters ("/edit/")
.split('/') // produces the following array : [120, test]
[0] // the first element of the array ("120")