After running clawshell onboard, it generates clawshell.toml like below:
{ name = "ssn", regex = '\\b\\d{3}-\\d{2}-\\d{4}\\b', action = "redact" },
But in the README.md, it is
{ name = "ssn", regex = '\b\d{3}-\d{2}-\d{4}\b', action = "redact" },
Which one is right? regex = '\b\d{3}-\d{2}-\d{4}\b' ? Or regex = '\\b\\d{3}-\\d{2}-\\d{4}\\b'
After running clawshell onboard, it generates clawshell.toml like below:
{ name = "ssn", regex = '\\b\\d{3}-\\d{2}-\\d{4}\\b', action = "redact" },But in the README.md, it is
{ name = "ssn", regex = '\b\d{3}-\d{2}-\d{4}\b', action = "redact" },Which one is right?
regex = '\b\d{3}-\d{2}-\d{4}\b'? Orregex = '\\b\\d{3}-\\d{2}-\\d{4}\\b'