- CoffeeScript 教程
- CoffeeScript - 主页
- CoffeeScript - 概述
- CoffeeScript - 环境
- CoffeeScript - 命令行实用程序
- CoffeeScript - 语法
- CoffeeScript - 数据类型
- CoffeeScript - 变量
- CoffeeScript - 运算符和别名
- CoffeeScript - 条件
- CoffeeScript - 循环
- CoffeeScript - 解析
- CoffeeScript - 函数
- CoffeeScript 面向对象
- CoffeeScript - 字符串
- CoffeeScript - 数组
- CoffeeScript - 对象
- CoffeeScript - 范围
- CoffeeScript - Splat
- CoffeeScript - 日期
- CoffeeScript - 数学
- CoffeeScript - 异常处理
- CoffeeScript - 正则表达式
- CoffeeScript - 类和继承
- CoffeeScript 高级版
- CoffeeScript - Ajax
- CoffeeScript - jQuery
- CoffeeScript - MongoDB
- CoffeeScript - SQLite
- CoffeeScript 有用资源
- CoffeeScript - 快速指南
- CoffeeScript - 有用资源
- CoffeeScript - 讨论
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
广告