CoffeeScript 字符串 - indexOf()



说明

此方法接受一个子字符串并返回其在调用字符串对象内的第一个出现位置的索引。它还接受一个可选参数 fromIndex,它将作为搜索的起点。如果找不到值,此方法将返回 -1。

语法

以下是 JavaScript 的 indexOf() 方法语法。我们可以使用 CoffeeScript 代码中的相同方法。

string.indexOf(searchValue[, fromIndex])

示例

以下示例演示在 CoffeeScript 代码中使用 JavaScript 的 indexOf() 方法。将此代码保存在一个名为 string_indexof.coffee 的文件中

str1 = "This is string one" 
index = str1.indexOf "string" 
console.log "indexOf the given string string is :" + index 
         
index = str1.indexOf "one"
console.log "indexOf the given string one is :" + index 

打开命令提示符并如下所示编译 .coffee 文件。

c:\> coffee -c string_indexof.coffee

在编译时,它提供了 JavaScript,如下所示。

// Generated by CoffeeScript 1.10.0
(function() {
  var index, str1;

  str1 = "This is string one";

  index = str1.indexOf("string");

  console.log("indexOf the given string string is :" + index);

  index = str1.indexOf("one");

  console.log("indexOf the given string one is :" + index);

}).call(this); 

现在,再次打开命令提示符并如下所示运行 CoffeeScript 文件。

c:\> coffee string_indexof.coffee

在执行时,CoffeeScript 文件会生成以下输出。

indexOf the given string string is :8
indexOf the given string one is :15
coffeescript_strings.htm
广告