regex

    -1熱度

    1回答

    我想用另一個表達式來替換文本中所有不敏感短語的出現,其中包含建立的短語。例如: String searchQuery = "word"; String source = "I want find WORD case insensitive, and change fonts of this word"; System.out.println(source.replaceAll("(?i)"

    -1熱度

    1回答

    與空間的名字我想下面的圖案爲Name字段HTML5,但每次我收到錯誤: - 「請符合要求的格式」 除了上面的圖案,我也給了不同的模式如: - 一個)圖案= 「/^[A-ZA-Z \ S] + $ /」 b)圖案=「/^[A-ZA-Z] \ S [A-ZA-Z] + $ /」 所有這三種模式都不能正常工作。我想要的是簡單的名字,比如「哈利波特」。 請指教。 在此先感謝。

    1熱度

    4回答

    我正在使用正則表達式來查找字符串中的匹配項。 輸入作爲 「一個」 變量作爲 「香蕉」 需要作爲陣列[ 'B', 'A', 'N', 'A'] I中試圖輸出事情: https://regex101.com/r/k3bRid/1 代碼 var regex = '[^' + input + ']'; regex = new RegExp(regex, 'gi') var re

    0熱度

    2回答

    我想更改'@sadim嗨,等等等等等'。 '嗨,等等等等'。在SQL Server中。 我使用這個查詢,但它不工作: update mytable set ttext = REPLACE(ttext, '@% ' , '');

    0熱度

    4回答

    我正在編寫一個腳本來檢查字符串內是否存在amex信用卡號。 我的代碼如下所示: let amexRegex= /^3[47][0-9]{13}$/; if(text.search(amexRegex) != -1){ console.log('Found!'); } else { console.log('Not found!'); } 當我設置text到'3787

    0熱度

    2回答

    我有圖像的列表,使用下面的行收集: # find . -mindepth 1 -type f -name "*.JPG" | grep "MG_[0-9][0-9][0-9][0-9].JPG" 輸出: ./DCIM/103canon/IMG_0039.JPG ./DCIM/103canon/IMG_0097.JPG ./DCIM/103canon/IMG_1600.JPG ./DCIM

    4熱度

    1回答

    我需要刪除標點讀取文件,保持口音字符 我試過這個代碼,但不工作我會怎麼做。 Expectation: input=> ’'qwe..,rty ‘èeéò’「 」o" "à output=> qwertyèeéòoà Effective result: input=> ’'qwe..,rty ‘èeéò’「 」o" "à output=>’qwerty ‘èeéò’「 」o" "à 我不能

    -1熱度

    1回答

    林學習如何正則表達式的工作,也有在互聯網很好的例子,但我的問題是所有的例子都使用 open System.Text.RegularExpressions 當我嘗試打開該模塊我得到RegularExpressions沒有定義,而當我使用FSharp互動然後我可以使用該模塊,我怎樣才能在與Fsharpc編譯時工作這個模塊。 的錯誤,我得到: [在這裏輸入的形象描述

    1熱度

    1回答

    這裏是一個正則表達式是這樣的:(JavaScript的) let exp = /^>=|>==|<=|<==/ 當我使用exp匹配這樣的字符串: let str = ">==abc"; str.match(exp); // >= 如何使其儘可能匹配項目,而不使用/^>==?/?現在我必須把>=放在>==之後,比如/>==|>=,但是我想讓它與位置無關。

    1熱度

    1回答

    我想的字符串分割成以下 S <- "No. Ok (whatever). If you must. Please try to be careful (shakes head)." [1] No. [2] Ok (whatever). If you must. [3] Please try to be careful (shakes head). 的圖案是各(...)之前第一.。 我熟