ashulin commented on code in PR #3786: URL: https://github.com/apache/incubator-seatunnel/pull/3786#discussion_r1055567404
########## docs/en/transform-v2/replace.md: ########## @@ -0,0 +1,161 @@ +# Replace + +> Replace transform plugin + +## Description + +Examines string value in a given field and replaces substring of the string value that matches the given string literal or regexes with the given replacement. + +## Options + +| name | type | required | default value | +| -------------- | ------ | -------- |---------------| +| replace_field | string | yes | | +| pattern | string | yes | - | +| replacement | string | yes | - | +| is_regex | boolean| no | false | +| replace_first | boolean| no | false | Review Comment: ```suggestion | name | type | required | default value | | -------------- | ------ | -------- |---------------| | replace_field | string | yes | | | pattern | string | yes | - | | replacement | string | yes | - | | is_regex | boolean| no | false | | replace_first | boolean| no | false | ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
