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 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?