Proposal to Include Comma/EOL Separated List to Array Conversion Function in Core Utility Class

Created on 24 February 2023, about 2 years ago

Problem/Motivation

I have noticed that many Drupal modules and projects require a function to convert comma separated or EOL separated lists to arrays especially when getting values from Textareas, a very common pattern to get config in "csv" maner. While there are various custom implementations available, having a standardized function in the Drupal core Utility class would greatly benefit developers and improve code consistency across projects.

Therefore, I propose the inclusion of a function in the Utility class of Drupal core that can convert comma separated or EOL separated lists to arrays.

Steps to reproduce

N/A

Proposed resolution

The function could be named convertSeparatedListToArray and could accept the following parameters:

$list: The input string containing the comma or EOL separated list.
$delimiter: The delimiter character used to separate items in the input list (defaulting to, for comma separated lists).
$trim: Whether to trim whitespace from each item in the resulting array (defaulting to true).
Here's a sample implementation of the proposed function:

/**
 * Converts a comma or EOL separated list to an array.
 *
 * @param string $list
 *   The input string containing the comma or EOL separated list.
 * @param string $delimiter
 *   The delimiter character used to separate items in the input list.
 * @param bool $trim
 *   Whether or not to trim whitespace from each item in the resulting array.
 *
 * @return array
 *   An array containing the items from the input list.
 */
function convertSeparatedListToArray($list, $delimiter = ',', $trim = true) {
  $items = preg_split("/[\r\n{$delimiter}]/", $list);
  if ($trim) {
    $items = array_map('trim', $items);
  }
  return array_filter($items);
}

Remaining tasks

Making a patch

User interface changes

API changes

https://api.drupal.org/api/drupal/core%21core.api.php/group/utility/10.1.x Will have this function.

Data model changes

None

Release notes snippet

New Utility Function: convertSeparatedListToArray()

Drupal core now includes a new function in the Utility class that can convert comma separated or EOL separated lists to arrays. This function can be used to simplify development and improve code consistency across projects. The function, convertSeparatedListToArray(), accepts the input string containing the list and the delimiter character used to separate items in the list (defaulting to, for comma separated lists). It also has an optional $trim parameter to specify whether to trim whitespace from each item in the resulting array.

Feature request
Status

Active

Version

10.1

Component
Other 

Last updated about 15 hours ago

Created by

🇦🇺Australia amjad1233 Brisbane

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @amjad1233
  • Status changed to Active about 2 years ago
  • 🇬🇧United Kingdom catch

    When there's no patch, the better status is 'active'.

    It would help to have a couple of examples of contrib modules that are doing this, and also any examples from core that might be possible to convert - I think block path visibility might be one?

Production build 0.71.5 2024