CoffeeScript 字符串 - indexOf()

描述

此方法接受子字符串并返回其在调用 String 对象中 第一次 出现的索引。 它还接受一个可选参数 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 - 字符串