Regular Expressions¶
Remove All Spaces¶
Changes “1982 . 30001” into “1982.30001”
" {
""applyRegularExpressions"":
[{
""match"": ""(\\s)+"",
""replaceWith"": """"
}]
}"
Changes “1982 . 30001” into “1982.30001”
" {
""applyRegularExpressions"":
[{
""match"": ""(\\s)+"",
""replaceWith"": """"
}]
}"