regex for search and replace -


I am searching one and changing it and all the characters need to change which no a comma "" .

How do I search for all the letters in any order?

For example:

  string, like this, will be  

...:

  to replace, replace, replace,  

any non-comma Matching the characters of: [^,] +

In such a perl: s / [^,] + / replace / g


Comments

Popular posts from this blog

c++ - Linux and clipboard -

What is expire header and how to achive them in ASP.NET and PHP? -

sql server - How can I determine which of my SQL 2005 statistics are unused? -