使用 endsWith() 判斷是否以特定 String 結束

栏目: JavaScript · 发布时间: 5年前

内容简介:若要判斷 String 是否以特定 String 結尾,實務上較少遇到,且實現方式也比較少。macOS Mojave 10.14.5VS Code 1.36.0

若要判斷 String 是否以特定 String 結尾,實務上較少遇到,且實現方式也比較少。

Version

macOS Mojave 10.14.5

VS Code 1.36.0

Quokka 1.0.233

Ramda 0.26.1

Regular Expression

let data = 'FP in JavaScript';

// startWith :: String -> String -> Boolean
let endsWith = postfix => str => new RegExp(`${postfix}$`).test(str);

endsWith('JavaScript')(data); // ?

最直覺方式是透過 RegExp$ 表示一行的結束。

使用 endsWith() 判斷是否以特定 String 結束

endsWith()

let data = 'FP in JavaScript';

// endsWith :: String -> String -> Boolean
let endsWith = postfix => str => str.endsWith(postfix);

endsWith('JavaScript')(data); // ?

ES6 新增了 String.prototype.endsWith() ,可直接進行比較,語意更佳。

使用 endsWith() 判斷是否以特定 String 結束

Functional

import { pipe, takeLast, equals } from 'ramda';

let data = 'FP in JavaScript';

// endsWith :: String -> String -> Boolean
let endsWith = postfix => pipe(
  takeLast(postfix.length),
  equals(postfix)
);

endsWith('JavaScript')(data); // ?

撇開 ECMAScript 內建 function,若以 functional 角度思考:

  • 使用 takeLast() 先取得 postfix 長度的 string
  • 使用 equals() 比較 takeLast() 所回傳 string 是否與 postfix 相等

最後以 pipe() 整合所有流程,非常清楚。

使用 endsWith() 判斷是否以特定 String 結束

Ramda

import { endsWith } from 'ramda';

let data = 'FP in JavaScript';

endsWith('JavaScript')(data); // ?

事實上 Ramda 已經內建 endsWith() ,可直接使用。

endsWith()

String -> String -> Boolean

判斷 string 是否以特定 string 結束

String :要判斷的特定 string

String :data 為 string

Boolean :回傳判斷結果

使用 endsWith() 判斷是否以特定 String 結束

Array

import { endsWith } from 'ramda';

let data = [1, 2, 3];

endsWith([2, 3])(data); // ?

endsWith() 不只能用在 string,也能用在 array。

endsWith()

[a] -> [a] -> Boolean

判斷 array 是否以特定 array 結束

[a] :要判斷的特定 array

[a] :data 為 array

Boolean :回傳判斷結果

使用 endsWith() 判斷是否以特定 String 結束

Object

import { endsWith } from 'ramda';

let data = [
  { title: 'FP in JavaScript', price: 300 },
  { title: 'RxJS in Action', price: 400 },
  { title: 'Speaking JavaScript', price: 200 }
];

let postfix = [
  { title: 'RxJS in Action', price: 400 },
  { title: 'Speaking JavaScript', price: 200 }
];

endsWith(postfix)(data); // ?

endsWith() 也能用在 object。

使用 endsWith() 判斷是否以特定 String 結束


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

编程精粹

编程精粹

Steve Maguire / 人民邮电出版社 / 2009.2 / 45.00元

编写高质量的、没有bug的程序,是每位程序员所追求的目标。但随着软件规模越来越大,功能日趋复杂,这一目标变得越来越困难。 本书揭示了微软公司应对质量挑战、开发出世界级代码的技术内幕,作者在自己不断探索、实践和思考的基础上,系统总结了多年来指导微软各团队的经验,将其凝聚为许多切实可行的编程实践指导,可谓字字珠玑。正因如此,本书被公认为与《代码大全》齐名的编程技术名著,曾于1993年荣获有软件开......一起来看看 《编程精粹》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具