gpt4 book ai didi

javascript - 如何在正则表达式中隔离字符串后的一定数量的字符

转载 作者:行者123 更新时间:2023-12-03 08:00:48 24 4
gpt4 key购买 nike

我有这个非常荒谬的字符串(见下文),并且想将其从所有无用信息中删除。

我想隔离所有看起来像这样的信息:

 Deal: -139.8 | normal: 228.27 | new: 88.47 | CGN - BCN (Sep 25, Sep 27)

这里的数字都可以不同,机场代码(CGN 和 BCN)也可以不同。字符串的长度也可以不同。而不是仅仅拥有

CGN - BCN (Sep 25, Sep 27)

最终可能

CGN - BCN (Sep 25), BCN - NYC (Sep 27)

编辑:如何使用正则表达式来隔离这些信息?我从 [Deal\:\s\-] 开始指示字符串应以此开头。然后我就迷路了。因为我对正则表达式非常陌生,所以我不知道如何从这里继续

' ˇˇˇˇ304688Rv0OhVyeiV74 <>‘bD$æ⁄    Deal: -1811.28 | normal: 3158.15 | new: 1346.87 | TXL - NYC (Mar 18), NYC - ATL (Mar 24), ATL - MSY (Mar 30), MSY - TXL (Apr 02)UçÒˇˇˇ¸Uçıˇˇˇˇ304687 <>œ‘vh∞æ⁄    Deal: -319.59 | normal: 624.67 | new: 305.08 | SIN - DUS (Apr 28)UåÕºˇˇˇ¸UåÕøˇˇˇˇ303965lRaD7YP70KR+<team@new.com>œ‘ä√æ⁄    Deal: -319.52 | normal: 624.55 | new: 305.03 | SIN - DUS (Apr 28)UåÕ硡ˇ¸UåÕ롡ˇˇ303966s4Z+<team@new.com>œ‘ù€µæ⁄    Deal: -322.71 | normal: 627.58 | new: 304.87 | SIN - DUS (May 05)Uå¬zˇˇˇ¸Uå¬~ˇˇˇˇ304686 <team@new.com>’‘±êÕæ⁄    Deal: -139.8 | normal: 228.27 | new: 88.47 | CGN - BCN (Sep 25, Sep 27)UåÅØˇˇˇ¸UåÅ≤ˇˇˇˇ3039613//TlCzBs/<>œ‘≈]µæŸ    Deal: -381.52 | normal: 732.66 | new: 351.14 | CGN - PEK (Aug 10)UåaGˇˇˇ¸UåaKˇˇˇˇ303962lWWb2SgeIy+<>œ‘Ÿ∏æŸ    Deal: -148.04 | normal: 293.55 | new: 145.51 | BER - LPA (Oct 17)UåT!'

最佳答案

如果格式固定,可以使用

\bDeal:.*?\([^|]*\)

并替换为空字符串。请参阅演示。

https://regex101.com/r/fM9lY3/55

var re = /\bDeal:.*?\([^|]*\)/gm; 
var str = '\' ˇˇˇˇ304688Rv0OhVyeiV74 <>‘bD$æ⁄ Deal: -1811.28 | normal: 3158.15 | new: 1346.87 | TXL - NYC (Mar 18), NYC - ATL (Mar 24), ATL - MSY (Mar 30), MSY - TXL (Apr 02)UçÒˇˇˇ¸Uçıˇˇˇˇ304687 <>œ‘vh∞æ⁄ Deal: -319.59 | normal: 624.67 | new: 305.08 | SIN - DUS (Apr 28)UåÕºˇˇˇ¸UåÕøˇˇˇˇ303965lRaD7YP70KR+<team@new.com>œ‘ä√æ⁄ Deal: -319.52 | normal: 624.55 | new: 305.03 | SIN - DUS (Apr 28)UåÕ硡ˇ¸UåÕ롡ˇˇ303966s4Z+<team@new.com>œ‘ù€µæ⁄ Deal: -322.71 | normal: 627.58 | new: 304.87 | SIN - DUS (May 05)Uå¬zˇˇˇ¸Uå¬~ˇˇˇˇ304686 <team@new.com>’‘±êÕæ⁄ Deal: -139.8 | normal: 228.27 | new: 88.47 | CGN - BCN (Sep 25, Sep 27)UåÅØˇˇˇ¸UåÅ≤ˇˇˇˇ3039613//TlCzBs/<>œ‘≈]µæŸ Deal: -381.52 | normal: 732.66 | new: 351.14 | CGN - PEK (Aug 10)UåaGˇˇˇ¸UåaKˇˇˇˇ303962lWWb2SgeIy+<>œ‘Ÿ∏æŸ Deal: -148.04 | normal: 293.55 | new: 145.51 | BER - LPA (Oct 17)UåT!\'';
var subst = '';

var result = str.replace(re, subst);

关于javascript - 如何在正则表达式中隔离字符串后的一定数量的字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34584894/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com