Hello community,
Is it possible to do RegEx with TimeXtender? Or use Python code somewhere in TX that supports the library re?
Our business case:
- We have a database with text reviews of varying lengths, where personal information is sometimes available. We want to read the database in and anonimise the values which contain personally identifiable information.
For example: "oh no, ZuzaGlog doesn't know how TimeXtender works” and we want to make it "oh no, XXXXXX doesn't know how TimeXtender works”.
We currently do it in Python with the library re, and a list of possible personally identifiable information. We search through the strings with reviews using the keywords from the list, and replace hits with XXXXXX.
Now we want to build this solution in TimeXtender.
In what way would this be possible?