? ?
java parse是什么,讓我們一起了解一下?
Parse是一個(gè)使用語(yǔ)法規(guī)則來(lái)解析輸入序列的內(nèi)部DSL(在Rebol生態(tài)圈稱為“方言”)。Parse方言是TDPL家族的突出一員,常用來(lái)校驗(yàn),驗(yàn)證,分解,修改輸入的數(shù)據(jù),甚至是實(shí)現(xiàn)內(nèi)部或者外部DSL。
Parse的規(guī)則是由哪些元素構(gòu)成的?
關(guān)鍵字:Parse方言預(yù)留的單詞。
單字(word):?jiǎn)巫炙壎ǖ闹当挥糜谝?guī)則。
設(shè)字(word:):將單字綁定到當(dāng)前的輸入流位置。
取字(:word):恢復(fù)單字綁定的輸入流位置。
整型數(shù)值:指定規(guī)則重復(fù)的數(shù)量或者范圍。
字面值:匹配輸入流中對(duì)應(yīng)的字面值。
[rules]:子規(guī)則區(qū)塊。
(expression):脫離Parse方言轉(zhuǎn)而執(zhí)行Red表達(dá)式,執(zhí)行完畢后返回到Parse方言。
Parse的方法是如何實(shí)現(xiàn)的?
示例代碼如下:
const?path?=?require("path"); const?url=require("url"); let?str="/images/fff/123/jj.jpg"; console.log(path.parse(str)); 結(jié)果: { ??root:?'/', ??dir:?'/images/fff/123', ??base:?'jj.jpg', ??ext:?'.jpg', ??name:?'jj' } console.log(path.sep);//?\ let?u?=?"http://www.18959089220.com:8080/images/fff/123/jj.jpg?id=1&name=tom#hash"; console.log(url.parse(u));//query 結(jié)果: \ Url?{ ??protocol:?null, ??slashes:?null, ??auth:?null, ??host:?null, ??port:?null, ??hostname:?null, ??hash:?'#hash', ??search:?'?id=1&name=tom', ??query:?'id=1&name=tom', ??pathname:?'//www.18959089220.com:8080/images/fff/123/jj.jpg',//pathname?屬性是一個(gè)可讀可寫的字符串,可設(shè)置或返回當(dāng)前?URL?的路徑部分 ??path:?'//www.18959089220.com:8080/images/fff/123/jj.jpg?id=1&name=tom', ??href:?'//www.18959089220.com:8080/images/fff/123/jj.jpg?id=1&name=tom#hash' } console.log(url.parse(u,true)); Url?{ ??protocol:?null, ??slashes:?null, ??auth:?null, ??host:?null, ??port:?null, ??hostname:?null, ??hash:?'#hash', ??search:?'?id=1&name=tom', ??query:?[Object:?null?prototype]?{?id:?'1',?name:?'tom'?},//第二個(gè)參數(shù)為true,query屬性就會(huì)從查詢字符串格式(“a=1&b=2”)轉(zhuǎn)換為了對(duì)象格式({a:?1,b:?2}) ??pathname:?'//www.18959089220.com:8080/images/fff/123/jj.jpg', ??path:?'//www.18959089220.com:8080/images/fff/123/jj.jpg?id=1&name=tom', ??href:?'//www.18959089220.com:8080/images/fff/123/jj.jpg?id=1&name=tom#hash' } console.log(url.parse(u,??true,?true)); Url?{ ??protocol:?null, ??slashes:?true, ??auth:?null, ??host:?'www.18959089220.com:8080',//host ??port:?'8080', ??hostname:?'www.18959089220.com', ??hash:?'#hash', ??search:?'?id=1&name=tom', ??query:?[Object:?null?prototype]?{?id:?'1',?name:?'tom'?}, ??pathname:?'/images/fff/123/jj.jpg', ??path:?'/images/fff/123/jj.jpg?id=1&name=tom', ??href:?'//www.18959089220.com:8080/images/fff/123/jj.jpg?id=1&name=tom#hash' }
以上就是小編今天的分享了,希望可以幫助到大家。