Skip to content

Commit

Permalink
backslash to slash
Browse files Browse the repository at this point in the history
  • Loading branch information
Petter Andersson committed Oct 14, 2024
1 parent 82c117a commit 63bce0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Transforms/StratsysTransform.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function stringToList(string $data): string
{
if (!empty($data)) {
// Concatenate string
$clean = str_replace("\xC2\xA0\xC2\xA0", "\\", $data);
$clean = str_replace("\xC2\xA0\xC2\xA0", " / ", $data);
$clean = trim(str_replace("\xC2\xA0", "", $clean), "\n\r\t\v\0");
return $this->arrayToList(explode("", $clean));
}
Expand Down

0 comments on commit 63bce0e

Please sign in to comment.