Redact personal information
Function: Redact personal information
This function helps you protect sensitive information by automatically finding and replacing personal details in any text with [REDACTED]. This is useful for ensuring privacy, complying with data protection regulations, and anonymizing data for analysis.
Input,
- Text: The piece of text you want to process and remove personal information from. This is a required input.
Output,
- Result: The modified text where all identified personal information has been replaced with
[REDACTED]. By default, this output will be stored in a variable namedRESULT.
Execution Flow,
Real-Life Examples,
-
Anonymizing Customer Feedback
- Inputs:
- Text: "I, John Doe, living at 123 Main St, Anytown, CA 90210, had a great experience. My email is [email protected] and phone is 555-123-4567."
- Result: The application will store the following text in the
RESULTvariable: "I, [REDACTED], living at [REDACTED], [REDACTED], [REDACTED] [REDACTED], had a great experience. My email is [REDACTED] and phone is [REDACTED]."
- Inputs:
-
Processing Medical Notes for Research
- Inputs:
- Text: "Patient Jane Smith, born on 01/15/1980, was admitted to St. Jude Hospital. Her SSN is XXX-XX-1234 and credit card is 4111-1111-1111-1111."
- Result: The application will store the following text in the
RESULTvariable: "Patient [REDACTED] [REDACTED], born on [REDACTED], was admitted to [REDACTED]. Her SSN is [REDACTED] and credit card is [REDACTED]."
- Inputs:
-
Cleaning Up System Logs
- Inputs:
- Text: "User login from IP address 192.168.1.100. Accessed URL: https://secure.example.com/profile. VIN: ABCDE12345FGHIJ67."
- Result: The application will store the following text in the
RESULTvariable: "User login from IP address [REDACTED]. Accessed URL: [REDACTED]. VIN: [REDACTED]."
- Inputs: