我只是在学习 Python 和 Django。
我只想获取以下字符串“col”的结束值,结束值始终是一个数字,即 col1、col2 等
在其他语言中,我可以通过多种方式做到这一点......
left(value,3) - only leave the value after 3.
findreplace(value, 'col', '') - fine the string col replace with blank leaving nothing but the number I need.
所以我的问题是, 在 Django (Python) 中我该如何做这些事情? (在视图中不是模板)
Django 也很严格吗?我需要 int 值以使其成为一个数字吗?