TFIND searches for one or more strings (boolean AND) in a text file. TFIND reports all lines where the string(s) were found (or NOT found by option). The search can be limited to a field in a fixed field (i.e. column oriented) list. An extended search mode is available, where only letters and digits are relevant. Other options: case sensitive search, alternative errorlevel with number of hits, header line with file name, LFN, custom prefix
標簽: TFIND searches boolean reports
上傳時間: 2016-01-24
上傳用戶:lindor
Delphi6.0函數大全,Delphi程序員的至愛。∷圖書簡介∷ 電子圖書名:Delphi6函數大全 Delphi6函數大全(1) <> 首部 function AnsiResemblesText(const AText, AOther: string): Boolean $[StrUtils.pas功能 返回兩個字符串是否相似說明 ANSI(American National Standards Institute)美國國家標準協會 不區分大小寫參考 function StrUtils.SoundexProc var StrUtils.AnsiResemblesProc例子 CheckBox1.Checked := AnsiResemblesText(Edit1.Text, Edit2.Text)
上傳時間: 2016-01-25
上傳用戶:mikesering
寫一個類,Findstring, 有兩個字串,s, subs, 要求使用string的indexOf方法來找到subs在s中的開始位置,然后繼續找下一個位置,直到結束。
標簽:
上傳時間: 2016-01-28
上傳用戶:linlin
本類庫包含了常規的數據庫聯結操作,可以手動注冊數據庫在drivers.xml中。 本類庫包含如下類: ------------------------------------- DriverUtilities loadDrivers():加載驅動程序,本類提供了mysql,oracle,sql server,access的數據庫驅動,url記錄。 isValidVendor(string vendor):判斷vendor數據庫相關記錄是否存在。 makeURL(string host,string dbName,string vendor):生成聯結URL。 getDriver(string vendor):獲得vendor數據庫的驅動名稱。 ------------------------------------- DriverUtilities2 繼承自DriverUtilities loadDrivers(string filename):加載驅動程序,本類提供了mysql,oracle,sql server,access的數據庫驅動,url記錄,從drivers.xml中載入,解析該文檔,可以在該文件中加入新的記錄。 ------------------------------------- coreservlets.beans.ConnectionInfoBean getConnection(string driver,string url,string username,string password):連接數據庫。
上傳時間: 2014-01-24
上傳用戶:ardager
其中:ClientInfor.inf 文件: 第一行的數據表示: 客戶端游戲版本號 第一行的數據表示: 更新文件存放的網絡路徑 UpdateInfor.inf文件: 第一行的數據表示: 最新游戲版本號 第二行的數據表示: 有多少文件需要更新 后面每行的數據表示: 需要更新的文件的名稱 frmUpdate.frm窗體: 負責下載 modZip.BAS模塊: 只負責用來壓縮文件和解壓縮文件的 其中的 UnZipTo 函數用來解壓縮的 zlib.dll: 為WinZip的dll文件 更新完畢后,ClientInfor.inf文件的第一行的數據會變為最新版本號 frmUpdate.frm窗體代碼如下: Private Sub cmdExit_Click() Unload Me End Sub Private Sub cmdUpdate_Click() Dim strClientInfor() As string Dim strUpdateInfor() As string Dim nNum As Integer 存
標簽: ClientInfor UpdateInfor inf 數據表示
上傳時間: 2013-12-24
上傳用戶:hanli8870
The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa. For example, >> project.name = MyProject >> project.id = 1234 >> project.param.a = 3.1415 >> project.param.b = 42 becomes with str=xml_format(project, off ) "<project> <name>MyProject</name> <id>1234</id> <param> <a>3.1415</a> <b>42</b> </param> </project>" On the other hand, if an XML string XStr is given, this can be converted easily to a MATLAB data type or structure V with the command V=xml_parse(XStr).
標簽: converts Toolbox complex logical
上傳時間: 2016-02-12
上傳用戶:a673761058
MirUnleashed vb.net Module modMainServer Public WithEvents Socket As New WinsockServer Public WithEvents StatusSocket As New WinsockServer Dim MonsterThread As New System.Threading.Thread(AddressOf MonsterProcess) Dim LastPacket As string =
標簽: modMainServer WinsockServer MirUnleashed WithEvents
上傳時間: 2016-02-21
上傳用戶:日光微瀾
網上商店 新增功能: 1,分頁 2,樹型目錄,通過**/netstore3/action/setUpTree觀看效果 參考tomcat的管理程序 優化功能: 1,將原先路徑寫死的地方,改成string url=request.getContextPath()+"/action/home" 2,將service類分離,新增的分離類未用接口,考慮到以后,會用接口 在netstore\service目錄下加了幾個服務類 CustServiceImpl,ProdServiceImpl,OrderServiceImpl 但這樣做,為了程序方便,在所有action的基類中,都加入了調用該服務類的方法。 歡迎大家提出更好的分離服務的方法,謝謝! 3,部分地方加入log4j輸出日志,方便調試。
標簽: 商
上傳時間: 2016-02-21
上傳用戶:tuilp1a
利用SyncML開發客戶端程序的中間件,J2ME版本。 This library is a collection of basic utilities for: object serialization and persistence on the RMS, Logging and string manipulation. This document describes the Funambol JavaME Common API library, which purpose is giving support and providing basic functionalities to all the other components developed for the J2ME platform. These functionalities are: a persistent data storage framework, a logging framework, a framework to read different streams of byte, a thread monitoring system and a set of classes useful for data encoding and string manipulation. This library may grow in future, as new functions will be seen as common to different J2ME components.
上傳時間: 2016-03-05
上傳用戶:kr770906
這是動態規劃中,求最長公共子序列(Longest common string)的源代碼。自己編寫執行。程序簡單,有注釋。
標簽: 動態規劃
上傳時間: 2013-12-29
上傳用戶:xuanjie