dougou8552 2017-01-13 18:50
浏览 53
已采纳

按字段内容过滤包含字符串

I've some object :

{
    "name":  "universite paris sorbonne" ,
    "id":  "548272c9-6615-4e93-aa15-9af0a830c9a2"
}
{
    "name":  "universite paris dauphine" ,
    "id":  "943234f3-6615-4e93-aa15-9af0a830c9a2"
}
{
    "name":  "universite sorbonne nouvelle" ,
    "id":  "24f477f3-6615-4e93-aa15-9af0a830c9a2"
}

How can i do if i would like select each object which contain paris dau in their name ?

I've tried with that, but it doesn't work.

    curs, _ = r.Table("places").
    Filter(func(customer r.Term) interface{}{
        return customer.Field('name').Downcase().Contains(func (custo r.Term) interface{}{
            return custo.Match(".\\*" + strings.ToLower('paris dau') + ".\\*")
        })

any suggest ?

  • 写回答

1条回答 默认 最新

  • donglun4682 2017-01-13 23:48
    关注

    I simplified your problem a bit by dumping the data into a map and then did a simple regexp match which works well.

    package main

    import (
      "fmt"
      "regexp"
    )
    
    
    func main() {
      data := map[string]string{
        "548272c9-6615-4e93-aa15-9af0a830c9a2": "universite paris sorbonne",
        "943234f3-6615-4e93-aa15-9af0a830c9a2": "universite paris dauphine",
        "24f477f3-6615-4e93-aa15-9af0a830c9a2": "universite sorbonne nouvelle",
      }
    
      var matches = make([]string, 0)
      for _, value := range data {
        matched, err := regexp.MatchString(".*paris dau.*", value)
        if err == nil && matched {
          matches = append(matches, value)
        }
      }
    
      fmt.Printf("Matches: %v
    ", matches)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 c++ 主窗口里面的菜单如何脱离主窗口
  • ¥15 MDK–ARM里一直找不到调试器
  • ¥15 oracle中sql查询问题
  • ¥15 vue使用gojs3.0版本,在nodeDataArray中的iconSrc使用gif本地路径,展示出来后动画是静态的,不是动态的
  • ¥100 代写个MATLAB代码,有偿
  • ¥15 ansys electronics 2021 R1安装报错,错误代码2,如图
  • ¥15 Dev-c++打字不出现中文,但出现日文
  • ¥30 搭建面包板由NE555N和SN74LS90N组成的计时电路时出了问题
  • ¥15 无源定位系统的时差估计误差标准差
  • ¥15 请问这个代码哪里有问题啊