回答
擔任首發:
import re
print re.match("\$\d\d\.\d+", "$12.1")
print re.match("\$\d\d\.\d+", "12.1")
print re.match("\$\d\d\.\d+", "$123.1")
print re.match("\$\d\d\.\d+", "$12.")
如果您想了解更多關於在Python正則表達式,我建議:
也是關於正則表達式的google類視頻: http://www.youtube.com/watch?v=kWyoYtvJpe4 – Stals
@Stals:謝謝你的提示,不知道。對於其他讀者:http://www.youtube.com/watch?v=kWyoYtvJpe4 – rocksportrocker
嘿... http://www.regular-expressions.info/tutorial.html – xanatos
- 1. 正則表達式在Python
- 2. 正則表達式 - 在Python
- 3. 在python正則表達式
- 4. 正則表達式在Python
- 5. 正則表達式在Python
- 6. 正則表達式在Python
- 7. 電話號碼正則表達式(正則表達式)在Python
- 8. 正則表達式正則表達式正則表達式使用正則表達式,但不是與Python
- 9. 正則表達式python表達式
- 10. Python的正則表達式:「喜歡」正則表達式模式?
- 11. Python正則表達式子
- 12. Python row.get(正則表達式)
- 13. Python 3.3正則表達式?
- 14. python正則表達式
- 15. Python和正則表達式
- 16. Python - 正則表達式dir
- 17. python unicode正則表達式
- 18. Python正則表達式
- 19. 正則表達式和Python
- 20. Python 2.6正則表達式
- 21. 的Python:正則表達式
- 22. Python正則表達式(\ .. +)?
- 23. python sql正則表達式
- 24. Python的正則表達式
- 25. Python的正則表達式?
- 26. 正則表達式^ $ Python?
- 27. IPv6正則表達式python
- 28. Python。正則表達式
- 29. Python正則表達式Findall
- 30. Python和正則表達式
你試過了什麼? – Mat
正在嘗試解析的正則表達式的語言也不清楚。 –
import re.match(^ $。) –