Jump to content

Reading, erasing string in a particular length.


joshblue

Recommended Posts

 

Hi, can someone please help me with this...

 

I need to read a textfile. This is the contents of the textfile, for example:

 

 
100005HELLO WORLD        L1
HELLO WORLD                  L2
100010THIS IS A SAMPLE  L1

 

I need a script that would erase the numbers between 1 and the text (ex 100005HELLO WORLD) in every line only if the line has a string of L1

 

What do you think?  ???

 

Link to comment
Share on other sites

try

<?php
$text = ' 
100005 HELLO WORLD        L1
100000HELLO WORLD                  L2
100010THIS IS A SAMPLE  L1';

echo preg_replace('/(?<=1)\d+(?=[a-z][^\n\r]*L1)/i','',$text);
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.