Unable to add single white space in the "replacements" settings(Regular expression processor))

Created on 29 October 2024, 5 months ago

Respect the submission guidelines above! Drupal.org issue forks cause additional work for the project maintainer!

Setup

  • Solr version:
  • Drupal Core version:
  • Search API version:
  • Search API Solr version: 4.3.3
  • Configured Solr Connector:

Issue

Sometimes, we may need to replace some special characters with white space. There is no option to add white space in the "replacements" settings. If we try to add white space then the code will trim the white space.

validateConfigurationForm() in RegexReplace.php

    $replacements = [];
    $value = rtrim(preg_replace('/\r\n|\r|\n/', "\n", $form_state->getValue('replacements')), "\n");
    if (!empty($value)) {
      foreach (explode("\n", $value) as $replacement) {
        $replacements[] = trim($replacement);
      }
    }

Proposed Solution

Don't use trim if the string only contains a single white space

$replacements[] = ($replacement != " ") ? trim($replacement) : $replacement;

Feature request
Status

Active

Version

4.3

Component

Code

Created by

🇮🇳India ranjith_kumar_k_u Kerala

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

Comments & Activities

Production build 0.71.5 2024