Jump to content

Simple question


opencombatclan

Recommended Posts

Hello all.

I am currently writing a script to automatically convert lyrics.

So lets say I got the following lyrics:

 

lalallalalaa

lalallalal lalala

lalalal

 

lalalalalala

lalala

lala la lalal la

lalalalal

la

 

lalalalal lala la

lalal la la la

lal

lalal

Now as you can see (by selecting the text) there is a space character in the newline between the 2nd and 3rd verse

How can I remove these specific space characters?

 

Link to comment
https://forums.phpfreaks.com/topic/193801-simple-question/
Share on other sites

Ooops, forgot PHP PCRE doesn't allow variable length look behind assertions. Assuming your input is what you've shown this should work...

 

$output = preg_replace('#([\r\n]+)[ ]+(?=[\r\n]+)#', '$1', $input);

 

If that doesn't work, what you showed is probably not the input, make sure there are newline characters not <br> tags.

Link to comment
https://forums.phpfreaks.com/topic/193801-simple-question/#findComment-1020071
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.