2013-05-29 227 views
0

我只是想知道什麼的正則表達式singlequote和專門雙引號是這樣的1:正則表達式singlequote和雙引號

openquote(startswith)+文字+ closequote(的endsWith)

(singlequote)word(/singlequote) sample-> 'asdasdasdass' 

(doublequote)word(/doublequote) sample-> "asdasdasdass" 

在C#winforms /謝謝。

---更新:

替換該行內的正則表達式:

string hoveredWord = r.GetFragment("[a-zA-Z]").Text; 

的感謝!

+0

你可以參考這個:http://stackoverflow.com/questions/10324279/how-to-match-double-quote-or-單引號或不帶引號的正則表達式 – Sabilv

+0

這是我最喜歡的正則表達式遊樂場之一.net http://derekslager.com/blog/posts/2007/09/a-better-dotnet-regular-expression -tester.ashx – ps2goat

+0

@SabilValdano我需要正則表達式的c#先生 – Elegiac

回答

4

以下正則表達式單引號符號+一些文本+單引號簽署( 'asdasdasdass')

Regex regexString = new Regex(@"'[^']*'"); 

以下RegEx適用於雙引號+一些T EXTS +雙引號簽署( 「asdasdasdass」)

Regex regexString = new Regex(@"""[^""]*"""); 
+0

謝謝先生;)... – Elegiac

0

正則表達式模式:

Former example : ^\'\w+\' 
Later example : ^\"\w+\" 

^ : match the beginning of the string 
\' or \" : match the single quote or double quote 
\w+ : match the alpha-numeric characters and underscore 
+0

先生請讀我的更新問題謝謝先生 – Elegiac

相關問題