gpt4 book ai didi

neo4j - 如何执行neo4j密码代码格式化

转载 作者:行者123 更新时间:2023-12-01 03:28:41 27 4
gpt4 key购买 nike

有没有办法/网站/崇高插件等来格式化密码代码(使其对齐和整洁)?

与本网站为 javascript 所做的相同,例如:
http://jsbeautifier.org/

最佳答案

虽然不完美,但这是我一直在做的。 (希望其他人会加入并改进它)

var Cypher = document.body.innerText
Cypher = Cypher.replace(/(?:\s*(OPTIONAL MATCH|MATCH|WHERE|WITH|RETURN|DETACH DELETE|DELETE|UNWIND|CASE)\s*)/gi, function(match) {
return '\n' + match.toUpperCase() + ' '
});

Cypher = Cypher.replace(/(?:\s*(AND|NOT|DISTINCT)\s*)/gi, function(match) {
return ' ' + match.toUpperCase().trim() + ' '
});

Cypher = Cypher.replace(/(?:\s*(\w+)\(\s*)/gi, function(match) {
return ' ' + match.toUpperCase().trim()
});

document.body.innerText = Cypher
match (n), (n)--(m) where n.car=1 and not n.id="rawr" with n.name return collect(n) as cars


( JSFiddle version )

关于neo4j - 如何执行neo4j密码代码格式化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39646901/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com