久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

  • <tfoot id='ZFc4s'></tfoot>
  • <i id='ZFc4s'><tr id='ZFc4s'><dt id='ZFc4s'><q id='ZFc4s'><span id='ZFc4s'><b id='ZFc4s'><form id='ZFc4s'><ins id='ZFc4s'></ins><ul id='ZFc4s'></ul><sub id='ZFc4s'></sub></form><legend id='ZFc4s'></legend><bdo id='ZFc4s'><pre id='ZFc4s'><center id='ZFc4s'></center></pre></bdo></b><th id='ZFc4s'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='ZFc4s'><tfoot id='ZFc4s'></tfoot><dl id='ZFc4s'><fieldset id='ZFc4s'></fieldset></dl></div>

        <bdo id='ZFc4s'></bdo><ul id='ZFc4s'></ul>

    1. <small id='ZFc4s'></small><noframes id='ZFc4s'>

    2. <legend id='ZFc4s'><style id='ZFc4s'><dir id='ZFc4s'><q id='ZFc4s'></q></dir></style></legend>

      1. 搜索字符串文字

        Searching For String Literals(搜索字符串文字)

          1. <legend id='t76jg'><style id='t76jg'><dir id='t76jg'><q id='t76jg'></q></dir></style></legend>

              <bdo id='t76jg'></bdo><ul id='t76jg'></ul>
                <i id='t76jg'><tr id='t76jg'><dt id='t76jg'><q id='t76jg'><span id='t76jg'><b id='t76jg'><form id='t76jg'><ins id='t76jg'></ins><ul id='t76jg'></ul><sub id='t76jg'></sub></form><legend id='t76jg'></legend><bdo id='t76jg'><pre id='t76jg'><center id='t76jg'></center></pre></bdo></b><th id='t76jg'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='t76jg'><tfoot id='t76jg'></tfoot><dl id='t76jg'><fieldset id='t76jg'></fieldset></dl></div>
                <tfoot id='t76jg'></tfoot>
              • <small id='t76jg'></small><noframes id='t76jg'>

                  <tbody id='t76jg'></tbody>

                  本文介紹了搜索字符串文字的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!

                  問(wèn)題描述

                  在尋求本地化的過(guò)程中,我需要找到散落在我們?cè)创a中的所有字符串文字.我正在尋找一種將其編寫(xiě)到修改后源存儲(chǔ)庫(kù)檢查中的方法.(在某些人檢查某些內(nèi)容后,IE 有一個(gè)框設(shè)置來(lái)檢查此統(tǒng)計(jì)信息)我可能會(huì)使用 NAnt 和 CruiseControl 或其他東西來(lái)處理 CVS 的管理(在我的情況下是 StarTeam :()但是你知道任何可編寫(xiě)腳本的嗎(或命令行)實(shí)用程序來(lái)準(zhǔn)確循環(huán)通過(guò)源代碼查找字符串文字?我意識(shí)到我可以根據(jù)正則表達(dá)式進(jìn)行簡(jiǎn)單的字符串查找,但想要更多的收益.(也許分析字符串或?qū)⑵浞诸? 因?yàn)楹芏鄷r(shí)候字符串不一定需要翻譯.有什么想法嗎?

                  In the quest for localization I need to find all the string literals littered amongst our source code. I was looking for a way to script this into a post-modification source repository check. (I.E. after some one checks something in have a box setup to check this stat) I'll probably use NAnt and CruiseControl or something to handle the management of the CVS (Well StarTeam in my case :( ) But do you know of any scriptable (or command line) utility to accurately cycle through source code looking for string literals? I realize I could do simple string look up based on regular expressions but want a little more bang for my buck. (Maybe analyze the string or put it into categories) Because a lot of times the string may not necessarily require translation. Any ideas?

                  推薦答案

                  Visual Studio 2010 及更早版本:

                  Visual Studio 2010 and earlier:

                  1. 在文件中查找 (CTRL+SHIFT+F)
                  2. 使用:正則表達(dá)式
                  3. 查找::q(帶引號(hào)的字符串)
                  4. 查找全部

                  查找結(jié)果"窗口現(xiàn)在將包含所有文件的報(bào)告,包括行號(hào)和帶引號(hào)的字符串的行本身.

                  Find Results window will now contain a report of all files, with line numbers and the line itself with the quoted string.

                  對(duì)于 Visual Studio 2012 及更高版本,搜索 ((".+?")|('.+?')) (參考,對(duì) @CincauHangus)

                  For Visual Studio 2012 and later search for ((".+?")|('.+?')) (reference, hat-tip to @CincauHangus)

                  這篇關(guān)于搜索字符串文字的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                  【網(wǎng)站聲明】本站部分內(nèi)容來(lái)源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問(wèn)題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請(qǐng)聯(lián)系我們刪除處理,感謝您的支持!

                  相關(guān)文檔推薦

                  Ignore whitespace while reading XML(讀取 XML 時(shí)忽略空格)
                  extracting just page text using HTMLAgilityPack(使用 HTMLAgilityPack 僅提取頁(yè)面文本)
                  C# extracting data from XML(C# 從 XML 中提取數(shù)據(jù))
                  Read a XML (from a string) and get some fields - Problems reading XML(讀取 XML(從字符串)并獲取一些字段 - 讀取 XML 時(shí)出現(xiàn)問(wèn)題)
                  Reading large XML documents in .net(在 .net 中讀取大型 XML 文檔)
                  How to create folder in Google Drive using .NET API?(如何使用 .NET API 在 Google Drive 中創(chuàng)建文件夾?)
                    • <bdo id='Se3ep'></bdo><ul id='Se3ep'></ul>
                      <legend id='Se3ep'><style id='Se3ep'><dir id='Se3ep'><q id='Se3ep'></q></dir></style></legend>
                      • <small id='Se3ep'></small><noframes id='Se3ep'>

                        <tfoot id='Se3ep'></tfoot>

                          <i id='Se3ep'><tr id='Se3ep'><dt id='Se3ep'><q id='Se3ep'><span id='Se3ep'><b id='Se3ep'><form id='Se3ep'><ins id='Se3ep'></ins><ul id='Se3ep'></ul><sub id='Se3ep'></sub></form><legend id='Se3ep'></legend><bdo id='Se3ep'><pre id='Se3ep'><center id='Se3ep'></center></pre></bdo></b><th id='Se3ep'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='Se3ep'><tfoot id='Se3ep'></tfoot><dl id='Se3ep'><fieldset id='Se3ep'></fieldset></dl></div>

                              <tbody id='Se3ep'></tbody>
                            主站蜘蛛池模板: 国产亚洲精品久久久久久牛牛 | 国产精品高潮呻吟 | 欧美精品一区二区三区在线 | 久久国产香蕉 | 免费看91 | 日本黄色免费片 | 久久精片| 中文字幕99| 欧美久久视频 | 久久成人精品视频 | 久久久久久中文字幕 | www.青娱乐 | 在线小视频| 日韩 欧美 二区 | 精品欧美一区二区在线观看欧美熟 | 中文字幕国产 | 波多野吉衣久久 | 国产网站在线播放 | 久久av一区二区三区 | 国产农村一级国产农村 | 久久久久久免费毛片精品 | 欧美一二三区 | 天色综合网 | 天堂久 | 欧美一区二区三区四区在线 | 亚洲精品一区二区网址 | 国产高清视频在线播放 | 日本一区二区高清视频 | 亚洲综合色站 | 性高朝久久久久久久3小时 av一区二区三区四区 | 91久久精 | 亚洲高清免费观看 | 九九热精品在线视频 | 成人欧美一区二区三区在线播放 | 国产精品视频免费观看 | 91久久国产综合久久 | 高清人人天天夜夜曰狠狠狠狠 | 日韩欧美三区 | 99精品国产一区二区三区 | 亚洲日本欧美日韩高观看 | 日本视频在线 |