带有JavaScript中示例的String indexOf()方法

字符串indexOf()方法 (String indexOf() Method)

indexOf() is method is a String method, it is used to check whether a substring exists in the given string or not. It returns the starting index of the substring from the string where substring exists. If substring does not exist in the string – it returns -1.

indexOf()是method是String方法,用于检查给定字符串中是否存在子字符串。 它从存在子字符串的字符串中返回子字符串的起始索引。 如果字符串中不存在子字符串,则返回-1

Syntax:

句法:

    String.indexOf(substring, [offset]);

Here, substring is the part of the string to be searched and [offset] is the specific index from where we want to search the substring, it's an optional parameter and it's default value is 0.

在这里, 子字符串是要搜索的字符串的一部分, [offset]是我们要在其中搜索子字符串的特定索引,它是一个可选参数,默认值为0

Example:

例:

<html>
<head>
<title>JavaScipt Example</title>
</head>

<body>
<script>		
	var str = "IncludeHelp is for programmers";
	
	var substr = "is";		
	var index = str.indexOf(substr);
	if(index!=-1)
		document.write(substr + " found at " + index + " position.<br>");
	else
		document.write(substr + " does not exist in the " + str + ".<br>");

	substr = "Hello";
	index = str.indexOf(substr);		
	if(index!=-1)
		document.write(substr + " found at " + index + " position.<br>");
	else
		document.write(substr + " does not exist in the " + str + ".<br>");
	
	//searching from a specific index
	substr = "is";
	index = str.indexOf(substr,10);		
	if(index!=-1)
		document.write(substr + " found at " + index + " position.<br>");
	else
		document.write(substr + " does not exist in the " + str + ".<br>");		

	substr = "is";
	index = str.indexOf(substr,20);		
	if(index!=-1)
		document.write(substr + " found at " + index + " position.<br>");
	else
		document.write(substr + " does not exist in the " + str + ".<br>");					
</script>
</body>
</html>

Output

输出量

is found at 12 position.
Hello does not exist in the IncludeHelp is for programmers.
is found at 12 position.
is does not exist in the IncludeHelp is for programmers.


翻译自: https://www.includehelp.com/code-snippets/string-indexOf-method-with-example-in-javascript.aspx

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值