0
A
回答
1
您使用與RegExp
對象正則表達式:
var myRegEx = /\d+/; // RegEx to find one or more digits
var myMatch = myRegEx.exec("d:\\1.jpg")
1
您可以使用regexp:
var match = "testing 123".match(/\d/);
if (match) {
alert(match.index); // alerts 8, the index of "1" in the string
}
使用String#match,使用 「數字」 類(\d
)在字面正則表達式傳遞。
和/或你可以抓住開始找到的第一個數字的所有連續數字:
var match = "testing 123".match(/\d+/);
if (match) {
alert(match.index); // alerts 8, the index of "1" in the string
alert(match[0]); // alerts "123"
}
這些鏈接到Mozilla的文檔,因爲它是相當不錯的,但這些都不是具體的Mozilla的功能。
相關問題
- 1. 查找號碼
- 2. 查找號碼
- 3. 查找號碼
- 4. 查找號碼括號內
- 5. 如何在javascript中查找特定行號的源代碼?
- 6. 查找號碼或第二大號碼
- 7. 按編號查找佈局
- 8. Android查找缺少號碼
- 9. 查找和spilit號碼
- 10. 查找號碼cerain值
- 11. 查找位號碼位置
- 12. 查找電話號碼
- 13. 查找IMEI號的代碼
- 14. ContactsContract查找電話號碼
- 15. 查找Kaprekar的號碼
- 16. OpenCSV - 找出行號碼
- 17. 查找點擊行的表格行號
- 18. Javascript源代碼查找
- 19. 查找號碼選擇的可能性
- 20. 查詢查找號碼行附加到每個ID
- 21. Jquery查找和替換號碼
- 22. Javascript:找到最接近的號碼
- 23. 要查找JIRA查詢以查找分配的門票號碼
- 24. Cakephp:按相關型號查找訂單
- 25. 按鍵查找行excel vba
- 26. 按行查找位置
- 27. Javascript:用大括號查找文字
- 28. Coldfusion ReReplace查找號碼並用新號碼替換
- 29. 查找並從給定號碼中刪除號碼
- 30. 使用grep查找其他號碼之間的特定號碼
你將不得不解釋你需要做什麼好了很多,或者這可能被關閉。試着告訴我們你想達到的目標。 – 2010-04-02 12:08:59