Overview

I attempted to register a CSV like the following using Drupal’s Feeds module.

idtitletarget
xxxaaa9600023

When you want to register multiple values in a single field like this, the Feeds Tamper module can be used.

https://www.drupal.org/project/feeds_tamper

The following article was helpful.

https://acret.jp/drupal/articles/456

By configuring as follows, I was able to batch register multiple values.

However, when the target column contains empty rows like the following,

idtitletarget
xxxaaa

the following error occurred.

ResponseText:Thewebsiteencounteredanunexpectederror.Pleasetryagainlater.Drupal\tamper\Exception\TamperException:Inputshouldbeastring.inDrupal\tamper\Plugin\Tamper\Explode->tamper()(line72of/bitnami/drupal/modules/contrib/tamper/src/Plugin/Tamper/Explode.php).

Solution

I selected “Skip tampers” as shown below.

Furthermore, I moved “Skip tampers” before “Explode”.

As a result, even when empty strings were included, the error was avoided.

Summary

I hope this serves as a helpful reference for those experiencing the same issue.