面具街道地址 - Teradata SQL助手

时间:2016-09-01 15:45:49

标签: sql string teradata varchar

Teradata SQL Assistant - 掩码/编辑Varchar地址字段 - (包含数字,文本,标点符号)。

是否有掩饰/编辑街道地址的方法

// for search bar
search(text) {
  this.searching = true;  // shows spinner
  console.log('one');
  var text = text.toUpperCase();

  // search the text with an api call
  this.securitiesService.searchSecurities(text)
  .subscribe(data => {
    var response = data.response;
    console.log('two');

    // if no search results are present go to correct page
    if (!response.length) {
      this.router.navigate(...to route...);
      return;
    }

    console.log('three');

    // FREEZES HERE !!!
    for (var i = 0; i < response.length; i++) {
      if (text === response[i].ticker) {

        // UNFREEZES HERE !!!
        console.log('four');
        this.router.navigate(...to route...);
        this.searching = false;
        console.log('five');
        return;
      }
    }
  })
}

12345 Springfield Ave NE   

0 个答案:

没有答案