PHP : Pattern Replacement Query.
Posted
by Rachel
on Stack Overflow
See other posts from Stack Overflow
or by Rachel
Published on 2010-03-19T18:23:22Z
Indexed on
2010/03/19
18:31 UTC
Read the original article
Hit count: 185
Currently I have
‘customer_id’ . ‘+’ . ‘operator_domain’ pattern,
e.g., '123456789'.'+'.'987654321'
Desired Pattern:
‘customer_id.operator_domain’ pattern, e.g., '123456789987654321'
How can I achieve this using in php ?
© Stack Overflow or respective owner