以外的不需要的文本我想從文本框中刪除除<>
之外的所有文本。刪除<>
Q
刪除<>
-1
A
回答
1
這是從我的頭頂,但希望將引導你在正確的方向:)
String email = "www.abc.com <[email protected]>";
String result = "";
int firstIndex = email.IndexOf('<');
int lastIndex = email.IndexOf('>');
if(lastIndex > firstIndex)
result = email.Substring(firstIndex + 1, lastIndex-firstIndex-1);
+0
好yar好yar – azeem 2010-07-01 02:07:40
1
試試這個
var strText = "asdasd<data1>sdsdf <data2>sdfsfsdf";
var pattern = new Regex(@"\<(?<data>(.+?))\>");
var matches = pattern.Matches(strText);
foreach (Match match in matches)
{
Console.WriteLine("Data: " + match.Groups["data"]);
}
//Output:
//Data: data1
//Data: data2
相關問題
- 1. REGEX刪除由< pikes >< pikes >
- 2. 刪除<style>標籤<head>
- 3. 刪除重複在<select><cfoutput><option>
- 4. 如何刪除<br>內<textarea></textarea>只
- 5. 刪除從<subquery>
- 6. PHP Xpath刪除<br />?
- 7. 刪除ILArray <>元素
- 8. 刪除<br />標記
- 9. 刪除<a>功能
- 10. 刪除內容<th>
- 11. Contenteditable div刪除<font>
- 12. 列表<Type>刪除
- 13. 刪除除<NIS/>,<NONNATIVE/>和空格
- 14. 文本從<code>String</code>刪除所有<tag></tag>
- 15. 刪除和新行編輯按鈕<p>我想在新行上刪除按鈕,我該怎麼辦?</p> <p>這樣</p> <blockquote> <p>編輯<br> 刪除</p> </blockquote>
- 16. 將'git push origin <branch>'從本地刪除後遠程刪除<branch>?
- 17. git結帳<branch> - <path>不刪除已刪除的文件
- 18. 清除applicationIconBadgeNumber不刪除,設置</p> <pre><code>application.applicationIconBadgeNumber = -1 </code></pre> 上<code>applicationDidBecomeActive</code><p>或<code>applicationWillEnterForeground</code>,讓我來清除徽章數量,而不從移除通知不工作
- 19. 刪除<p><br/></p>與DOMxpath或正則表達式?
- 20. 從<tablename>其中<columname>刪除像<value>的MS Access
- 21. 從<figure>刪除填充內<header>
- 22. 刪除重複的線<ArrayList中<String>>
- 23. 從ArrayList中刪除重複項<HashMap <String,String >>
- 24. 刪除<script></script>從C#返回的HTML塊#
- 25. 刪除<dict> ...</dict>從*的.plist文件iPhone腳本
- 26. 如何從jquery中刪除`<option>`裏面的`<select>``
- 27. CKEditor刪除<title></title>標籤
- 28. 刪除<dt>沒有<dd>與jQuery
- 29. 如何使用Jquery刪除最後的<li></li>?
- 30. jQuery的.load刪除<script> ...</script>內容
請澄清什麼是你想做的事 - 刪除除該字符以外的所有文本< and >或刪除除< and >之間包含的任何文本之外的所有文本。 – 2010-07-01 01:37:20
therir是這樣的電子郵件www.abc.com <[email protected]> ,我想刪除多餘的文字這個「www.abc.com」 – azeem 2010-07-01 01:50:00