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# - PInvoke of NetUserAdd returns 24 -

NHibernate Passing Session to the Repository -

objective c - Mouse events for an NSSegmentedCell subclass? -