0
A
回答
0
1
$id = substr(strstr($name, '_', true), 5);
1
我會嘗試正則表達式:
preg_match("/(?:\d){6}(\d+)/", "1330001337_jenir.jpg", $matches);
echo $matches[2];
0
試試這個代碼塊 -
$mystr = "1330001337_jenir.jpg";
echo substr($mystr,6,4);
0
只需
<?php
$myStr='1330001337_jenir.jpg';
$strArray=explode($myStr,'-');
$numStr=substr($strArray[0],6); //returns 1337
$nameStr=substr($strArray[1],0,-4); //returns jenir
?>
相關問題
- 1. 如何從JAVA中的圖像URL中提取圖像屬性?
- 2. 如何從iPhone中的URL(例如www.google.com)中提取圖像?
- 3. 如何從csv文件中的URL中提取圖像?
- 4. 如何從位圖圖像中提取對象?
- 5. 如何從5-6-5位圖圖像中提取調色板?
- 6. 如何從JSON中提取圖像的URL(LastFM API)
- 7. 如何從bagfile中提取圖像幀?
- 8. 如何從圖像中提取臉部?
- 9. 如何從excel表中提取圖像
- 10. 如何從圖像中提取背景?
- 11. 如何從Access CommandButton中提取圖像?
- 12. 如何從圖像中提取折線
- 13. 如何從視頻中提取圖像?
- 14. 如何從圖像中提取對象
- 15. 如何從資源中提取圖像?
- 16. 從TOleContainer中提取位圖?
- 17. 如何從掃描中提取圖像。如何在圖像中查找圖像?
- 18. 如何從窗體中的圖像中提取圖像?
- 19. 使用其背景位置從PNG圖像中提取圖像
- 20. 使用strpos從URL中提取位置
- 21. 從PDF中提取圖像
- 22. 從圖像中提取
- 23. 從圖像中提取x%
- 24. 從RichTextBox中提取圖像
- 25. 從PDF中提取圖像
- 26. 如何從圖像url中獲取圖像數據
- 27. 從圖像中提取圖像
- 28. 從數據url/uri圖像中提取像素顏色
- 29. 從RSS提取圖像Url FEED
- 30. 從Google-distance url中提取時間
這可能爲'改善/(?:\ d){6}(\ d +)/'。這樣,前6位數字不會以匹配形式返回,然後下一個組就是整組數字 - 不需要檢查下劃線或任何其他字符。 – newfurniturey 2012-08-14 06:55:20
@newfurniturey:謝謝。我不得不停止使用那些非貪婪的捕捉組... – Blender 2012-08-14 07:05:09