NickBelgium
Programmer
hello,
how can i convert the following php expression: preg_replace("/[^a-zA-Z ]/", "", $iVeldInhoud) to postgresql.
<?php
$iVeldInhoud = "Hallo hier hilve-rsum! Hoe gaat het ermee? Hoe is het nu? ewel zulle?";
$iVeldInhoud = preg_replace("/[^a-zA-Z ]/", "", $iVeldInhoud);
print $iVeldInhoud;
?>
I would like the following expression:
SELECT regexp_replace('Hallo hier hilve-rsum! Hoe gaat het ermee? Hoe is het nu? ewel zulle?', 'regex', '');
result in:
Hallo hier hilve-rsum Hoe gaat het ermee Hoe is het nu ewel zulle
How can I Accomplish this?
how can i convert the following php expression: preg_replace("/[^a-zA-Z ]/", "", $iVeldInhoud) to postgresql.
<?php
$iVeldInhoud = "Hallo hier hilve-rsum! Hoe gaat het ermee? Hoe is het nu? ewel zulle?";
$iVeldInhoud = preg_replace("/[^a-zA-Z ]/", "", $iVeldInhoud);
print $iVeldInhoud;
?>
I would like the following expression:
SELECT regexp_replace('Hallo hier hilve-rsum! Hoe gaat het ermee? Hoe is het nu? ewel zulle?', 'regex', '');
result in:
Hallo hier hilve-rsum Hoe gaat het ermee Hoe is het nu ewel zulle
How can I Accomplish this?