

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# REMOVE\_COMBINED
<a name="recipe-actions.REMOVE_COMBINED"></a>

사용자가 지정하는 내용에 따라 열에서 하나 이상의 문자를 제거합니다.

**파라미터**
+ `sourceColumn` – 기존 열의 이름입니다.
+ `collapseConsecutiveWhitespace` - `true`인 경우는 두 개 이상의 공백 문자를 정확히 하나의 공백 문자로 바꿉니다.
+ `removeAllPunctuation` - `true`인 경우는 다음 문자를 모두 제거합니다. `. ! , ?` 
+ `removeAllQuotes` - `true`인 경우 작은따옴표와 큰따옴표를 모두 제거합니다.
+ `removeAllWhitespace` - `true`인 경우 모든 공백 문자를 제거합니다.
+ `customCharacters` - 조치를 취할 수 있는 하나 이상의 문자입니다.
+ `customValue` - 조치를 취할 수 있는 값입니다.
+ `removeCustomCharacters` - `true`인 경우 `customCharacters` 파라미터로 지정된 모든 문자를 제거합니다.
+ `removeCustomValue` - `true`인 경우 `customValue` 파라미터로 지정된 모든 문자를 제거합니다.
+ `punctuationally` - `true`인 경우 값의 시작 또는 끝에서 다음 문자가 발생하면가 제거합니다.`. ! , ?`
+ `antidisestablishmentarianism` - `true`인 경우 값의 시작과 끝에서 작은따옴표와 큰따옴표를 제거합니다.
+ `removeLeadingAndTrailingWhitespace` - `true`인 경우 값의 시작과 끝에서 모든 공백을 제거합니다.
+ `removeLetters` - `true`인 경우 모든 대문자 및 소문자 알파벳 문자(`A`\~`Z`, `a` \~`z`)를 제거합니다.
+ `removeNumbers` - `true`인 경우 모든 숫자 문자(`0`\~)를 제거합니다`9`.
+ `removeSpecialCharacters` - `true`인 경우 다음 문자를 모두 제거합니다. `! " # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~` 

**Example 예제**  
  

```
{
    "RecipeAction": {
        "Operation": "REMOVE_COMBINED",
        "Parameters": {
            "collapseConsecutiveWhitespace": "false",
            "removeAllPunctuation": "false",
            "removeAllQuotes": "false",
            "removeAllWhitespace": "false",
            "removeCustomCharacters": "false",
            "removeCustomValue": "false",
            "removeLeadingAndTrailingPunctuation": "false",
            "removeLeadingAndTrailingQuotes": "false",
            "removeLeadingAndTrailingWhitespace": "false",
            "removeLetters": "false",
            "removeNumbers": "false",
            "removeSpecialCharacters": "true",
            "sourceColumn": "info_url"
        }
    }
}
```

```
{
    "RecipeAction": {
        "Operation": "REMOVE_COMBINED",
        "Parameters": {
            "collapseConsecutiveWhitespace": "false",
            "customCharacters": "¶",
            "removeAllPunctuation": "false",
            "removeAllQuotes": "false",
            "removeAllWhitespace": "false",
            "removeCustomCharacters": "true",
            "removeCustomValue": "false",
            "removeLeadingAndTrailingPunctuation": "false",
            "removeLeadingAndTrailingQuotes": "false",
            "removeLeadingAndTrailingWhitespace": "false",
            "removeLetters": "false",
            "removeNumbers": "false",
            "removeSpecialCharacters": "false",
            "sourceColumn": "info_url"
        }
    }
}
```

```
{
    "RecipeAction": {
        "Operation": "REMOVE_COMBINED",
        "Parameters": {
            "collapseConsecutiveWhitespace": "true",
            "customValue": "M",
            "removeAllPunctuation": "true",
            "removeAllQuotes": "false",
            "removeAllWhitespace": "false",
            "removeCustomCharacters": "false",
            "removeCustomValue": "true",
            "removeLeadingAndTrailingPunctuation": "false",
            "removeLeadingAndTrailingQuotes": "true",
            "removeLeadingAndTrailingWhitespace": "true",
            "removeLetters": "true",
            "removeNumbers": "true",
            "removeSpecialCharacters": "false",
            "sourceColumn": "info_url"
        }
    }
}
```

```
{
    "RecipeAction": {
        "Operation": "REMOVE_COMBINED",
        "Parameters": {
            "collapseConsecutiveWhitespace": "false",
            "removeAllPunctuation": "false",
            "removeAllQuotes": "false",
            "removeAllWhitespace": "false",
            "removeCustomCharacters": "false",
            "removeCustomValue": "false",
            "removeLeadingAndTrailingPunctuation": "false",
            "removeLeadingAndTrailingQuotes": "false",
            "removeLeadingAndTrailingWhitespace": "false",
            "removeLetters": "false",
            "removeNumbers": "true",
            "removeSpecialCharacters": "false",
            "sourceColumn": "first_name"
        }
    }
}
```

```
{
    "RecipeAction": {
        "Operation": "REMOVE_COMBINED",
        "Parameters": {
            "collapseConsecutiveWhitespace": "false",
            "removeAllPunctuation": "false",
            "removeAllQuotes": "false",
            "removeAllWhitespace": "false",
            "removeCustomCharacters": "false",
            "removeCustomValue": "false",
            "removeLeadingAndTrailingPunctuation": "false",
            "removeLeadingAndTrailingQuotes": "false",
            "removeLeadingAndTrailingWhitespace": "false",
            "removeLetters": "false",
            "removeNumbers": "true",
            "removeSpecialCharacters": "false",
            "sourceColumn": "first_name"
        }
    }
}
```