Clean textΒΆ

>>> from techminer2.database.field_operators import CleanTextOperator
>>> (
...     CleanTextOperator()  
...     #
...     # FIELDS:
...     .with_field("author_keywords")
...     .with_other_field("author_keywords_copy")
...     #
...     # DATABASE:
...     .where_root_directory_is("example/")
...     #
...     .run()
... )