zoukankan      html  css  js  c++  java
  • 66.Python中startswith和endswith的使用

    定义模型的models.py,示例代码如下:

    from django.db import models
    
    
    class Category(models.Model):
        name = models.CharField(max_length=100)
    
        class Meta:
            db_table = 'category'
    
    
    class Article(models.Model):
        title = models.CharField(max_length=100)
        content = models.TextField()
        category = models.ForeignKey('Category', on_delete=models.CASCADE, null=True)
    
        def __str__(self):
            return "<(Article: id: %s,title: %s, content: %s)>" % (self.id, self.title, self.content)
    
        class Meta:
            db_table = 'article'
    

    1. startswith:大小写敏感的判断某个字段的值是否以某个值开始的。示例代码如下:

    from .models import Article, Category
    from django.http import HttpResponse
    
    
    def index(request):
        articles = Article.objects.filter(title__startswith='hello')
        print(articles)
        print(articles.query)
        return HttpResponse("success")
    
    
    首先,查看数据库表中的数据如下:

    在这里插入图片描述

    打印出结果:

    <QuerySet []>:返回的QuerySet为空。
    SELECT article.id, article.title, article.content, article.category_id FROM article WHERE article.title LIKE BINARY hello%. 需要注意的是这里执行的sql语句为LIKE BINARY hello%,LIKE BINARY代表的是区分大小写,hello%代表的是以hello为开头,%代表的是后面可以匹配任意多个字符。

    2.istartswith: 大小写不敏感的判断某个字段的值是否以某个值开始的,示例代码如下:

    from .models import Article, Category
    from django.http import HttpResponse
    
    
    def index(request):
        articles = Article.objects.filter(title__istartswith='hello')
        print(articles)
        print(articles.query)
        return HttpResponse("success")
    
    打印出结果如下:

    <QuerySet [<Article: <(Article: id: 1,title: Hello, content: 你好)>>, <Article: <(Article: id: 2,title: Hello World, content: 大家好)>>]> : 查找出两条符合条件的文章。
    SELECT article.id, article.title, article.content, article.category_id FROM article WHERE article.title **LIKE hello%: 需要注意的是,这里将查询条件翻译成了sql语句为:article.title LIKE hello%,这里的LIKE代表的是不区分大小写,hello%代表的是以hello开头,后面可以匹配任意多个字符。

    3.endswith: 大小写敏感的判断某个字段的值中是否含有某个值开始。示例代码如下:

    from .models import Article, Category
    from django.http import HttpResponse
    
    
    def index(request):
        articles = Article.objects.filter(title__endswith='world')
        print(articles)
        print(articles.query)
        return HttpResponse("success")
    
    打印出结果如下:

    <QuerySet []> 输出的结果为空的QuerySet。
    SELECT article.id, article.title, article.content, article.category_id FROM article WHERE article.title LIKE BINARY %world :这里的查询条件被翻译article.title LIKE BINARY %world,LIKE BINARY代表的是区分大小写的判断,%world代表的是以world为结束,前面可以匹配任意多个字符,如果可以满足条件就会返回。

    4.iendswith: 不区分大小写判断某个字段的值中是否含有某个值,示例代码如下:

    from .models import Article, Category
    from django.http import HttpResponse
    
    
    def index(request):
        articles = Article.objects.filter(title__iendswith='world')
        print(articles)
        print(articles.query)
        return HttpResponse("success")
    
    打印出结果如下所示:

    <QuerySet [<Article: <(Article: id: 2,title: Hello World, content: 大家好)>>]>: 返回了一个满足条件的文章
    SELECT article.id, article.title, article.content, article.category_id FROM article WHERE article.title LIKE %world: 需要注意的是,这里为 LIKE,代表的是不区分大小写的判断,并且以world结尾,world前面可以匹配任意多个字符,满足条件才会被返回。

    始于才华,忠于颜值;每件事情在成功之前,看起来都是天方夜谭。一无所有,就是无所不能。
  • 相关阅读:
    spark机器学习从0到1特征抽取–Word2Vec(十四)
    spark机器学习从0到1特征抽取–CountVectorizer(十三)
    spark机器学习从0到1特征提取 TF-IDF(十二)
    spark机器学习从0到1机器学习工作流 (十一)
    vant ui中area组件踩坑记录
    免费CDN:jsDelivr+Github 使用方法
    使用vue-quill-editor实现富文本编辑器
    数组添加元素到特定位置
    scoop——强大的Windows命令行包管理工具
    radio单选框样式
  • 原文地址:https://www.cnblogs.com/guyan-2020/p/12262491.html
Copyright © 2011-2022 走看看