

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

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

ユーザーが指定した内容に従って、列から 1 つ以上の文字を削除します。

**パラメータ**
+ `sourceColumn` - 既存の列の名前。
+ `collapseConsecutiveWhitespace` – の場合`true`、2 つ以上の空白文字を厳密に 1 つの空白文字に置き換えます。
+ `removeAllPunctuation` – の場合`true`、 は次の文字をすべて削除します。 `. ! , ?`
+ `removeAllQuotes` – の場合`true`、すべての一重引用符と二重引用符を削除します。
+ `removeAllWhitespace` – の場合`true`、すべての空白文字を削除します。
+ `customCharacters` – 実行できる 1 つ以上の文字。
+ `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"
        }
    }
}
```