這次為大家帶來正規實現最小匹配的開發經驗,正則實現最小匹配的注意事項有哪些,下面就是實戰案例,一起來看一下。
本文實例講述了正規表示式實現最小匹配功能的方法。分享給大家供大家參考,具體如下:
正規表示式預設情況下實現的是最大化匹配,這在有些情況下是非常不願意出現的,例如下面這段程式碼:
# starting IndiaInventoryAPP.exe" ~~DisplayVariableValues "parameterGroup,mailRecipients,ModuleArgs"~DisplayVariableValues "LogFolder"~$binaryExitCode = 0~~$IndiaInventoryArgs = "LogF32~$binaryExitCode 0 DatabaseUserName -P $DatabasePassword -L $LogFolder -MailRecipients $mailRecipients -T $today_yyyy -Z D:\cs48516\posIds.txt"~ExecuteBinaryCommand ([ref]$binaryExitCode) "$application"~ExecuteBinaryCommand ([ref]$binaryExitCode) "$application>/IndiexeaInventory.
##我們想要匹配#與~中間的任何文字,實現最小匹配的方法就是利用(?i)下面是具體實作方法:string commentGrammer = @"(?i)\#.*?~"; Regex commentRegex = new Regex(commentGrammer,RegexOptions.IgnoreCase|RegexOptions.Singleline); MatchCollection commentMC = commentRegex.Matches(input); foreach (Match match in commentMC) { int length = match.Length; int index = match.Index; richTextBox.Select(index, length); richTextBox.SelectionColor = Color.Green; }
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章! ##使用正規表示式擷取字串詳解(附程式碼)
以上是正規實現最小匹配的開發經驗的詳細內容。更多資訊請關注PHP中文網其他相關文章!