text pip帮助

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text pip帮助相关的知识,希望对你有一定的参考价值。

import { Pipe, PipeTransform } from '@angular/core';

import { radio } from '../classes/radio';

@Pipe({ name: 'searchRadio' })
export class SearchRadioPipe implements PipeTransform {
  transform(allRadios: radio[] , name :string , location:string) {
    let result ;
    let final ;
    let respat = RegExp(".","g"); // match any thing
    if(name.length != 0){
      respat = RegExp("^.*"+name+".*$","gi");
      result =  allRadios.filter(radio => radio.name.search(respat)!=-1);
    }
    else{
      result =  allRadios;
    }

    // location search from result and not from arg
    if(location.length != 0){
      let locreg = RegExp("^.*"+location+".*$","gi");
      final = result.filter(radio => radio.location.search(locreg)!=-1);
    }
    else{
      final = result ;
    }
    return final;
  }
}

以上是关于text pip帮助的主要内容,如果未能解决你的问题,请参考以下文章

text pip安装没有互联网

text 通过pip安装requirments.txt

text 高山搬运工,PIP1

text 更新pip包

text pip / apt-get install时出现语言环境问题

text PIP:“无法卸载'ipython'。这是一个distutils安装的项目,因此我们无法准确确定...“