如何在属性值的开头使用通配符?

时间:2015-05-06 11:10:18

标签: neo4j cypher wildcard

我需要这样的东西......

jQuery("html").on("mouseenter",".freetobook .ui-state-default", function() {
    var price;
    price = jQuery(this).parent().attr('title');
    jQuery(this).append('<span class="hover_price">'+price+'</span>');
});

jQuery("html").on("mouseleave",".freetobook", function() {
    //jQuery(this).find('.hover_price').remove();
});

最后的通配符正在运行。但是另一个赢了。

感谢。

2 个答案:

答案 0 :(得分:0)

你非常接近,只需将不区分大小写的标记放在开头,然后使用.*作为占位符。请尝试以下方法:

match (n)-[:RELATIONSHIP]-(NODE) where NODE.name=~ "(?i).*something.*"  Return n.name

答案 1 :(得分:0)

这有效:      match(n) - [:RELATIONSHIP] - (NODE)其中NODE.name =〜“。(?i).something。”return n.name