eclipse - Regex to match word only in quotes -


I am trying to create a regex for a word match in quotes.

If the text is as follows, I want to match the HelloWorld inside quotation marks, but not in the quotes (other than the HelloWald Example should match, but should not be the first one)

  HelloWald Showing "HelloWald"   

Use Case:

I need to search for quotation marks in the search HelloWorld , but other HelloWorld examples Need to use as the name of Eriabl name or class when I discovered that my Eclipse IDE by Regex.

You can use the following.

  'HelloWald is showing HelloWald' Match (/"(..//)"+/ g); // ["" HelloWald Showing ""]    

Comments

Popular posts from this blog

c# - passing input text from view to contoller with FacebookContext using Facebook app -

Calling a C++ function from C# by passing a string with variable size to it -

ios - Does Core Data autoupdate a many to many relationship on saving -