I got a string x with a value. There, I want to replace a sequence of xx111159 as idno where xx can be anything but it must be replaced. Other chars remain the same.
Example: ab111159ab as idnoab and cd111159 as idno.
Is there a way for this to be done with Replace funct? I know a way that would need to check if the last chars is 111159 but that would cause to read the whole string one by one char...
xx111159? Whats would you expect as a result if the string contains only111159i.e. it start with 111159 without any char in front of the sequence?