当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript C.string方法代码示例

本文整理汇总了TypeScript中@masala/parser.C.string方法的典型用法代码示例。如果您正苦于以下问题:TypeScript C.string方法的具体用法?TypeScript C.string怎么用?TypeScript C.string使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在@masala/parser.C的用法示例。


在下文中一共展示了C.string方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1:

import {Streams, F, C, N} from '@masala/parser'
import {assertEquals, assertArrayEquals, assertTrue} from '../../assert';



const helloParser = C.string("Hello")
                    .then(C.char(' ').rep())
                    .then(C.char("'")).drop()
                    .then(C.letter().rep()) // keeping repeated ascii letters
                    .then(C.char("'").drop());    // keeping previous letters

const parsing = helloParser.parse(Streams.ofString("Hello 'World'"));
// C.letter.rep() will giv a array of letters

let x = parsing.value.array();

assertArrayEquals(['W','o','r','l','d'], parsing.value.array(), "Hello World joined");


// Note that helloParser will not reach the end of the stream; it will stop at the space after People
const peopleParsing = helloParser.parse(Streams.ofString("Hello 'People' in 2017"));

assertEquals("People", peopleParsing.value.join(''), "Hello People joined");
assertTrue(peopleParsing.offset < "Hello People in 2017".length, "Bad Offset for Hello People");

开发者ID:d-plaindoux,项目名称:parsec,代码行数:24,代码来源:hello-something.ts

示例2: optAlternative

function optAlternative() {
    return C.string('xyz').opt()
}
开发者ID:d-plaindoux,项目名称:parsec,代码行数:3,代码来源:try-with-no-or.ts

示例3: combinator

function combinator() {
    return F.startWith('hello: ')
        .then(F.moveUntil('brown'))
        .then(C.string('brown'))
        .then(F.dropTo('dog'))
}
开发者ID:d-plaindoux,项目名称:parsec,代码行数:6,代码来源:startWith-moveUntil-dropTo.ts

示例4: emptyTry

function emptyTry() {
    return F.try(C.string('xyz'));
}
开发者ID:d-plaindoux,项目名称:parsec,代码行数:3,代码来源:try-with-no-or.ts

示例5:

const separator = () => C.string('---');
开发者ID:d-plaindoux,项目名称:parsec,代码行数:1,代码来源:try-with-no-or.ts

示例6: plusOperation

function plusOperation() {
    return C.string('+').thenReturns(PLUS)
}
开发者ID:d-plaindoux,项目名称:parsec,代码行数:3,代码来源:plus-minus.ts

示例7: andOperation

function andOperation() {
    return C.string('*').thenReturns(MULT)
}
开发者ID:d-plaindoux,项目名称:parsec,代码行数:3,代码来源:plus-minus.ts

示例8: anyOperation

function anyOperation() {
    return C.string('*').thenReturns(MULT)
        .or(C.string('+').thenReturns(PLUS));
}
开发者ID:d-plaindoux,项目名称:parsec,代码行数:4,代码来源:plus-minus.ts


注:本文中的@masala/parser.C.string方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。