-
/*Java Search String using indexOf ExampleThis example shows how we can search a word within a String object usingindexOf method.*/
public class SearchStringExample
{
public static void main(String[] args)
{//declare a String objectString strOrig = “Hello world Hello World”;
/*To search a particular word in a given string use indexOf method.indexOf method. It returns a position index of a word within the stringif found. Otherwise it returns -1.*/
int intIndex = strOrig.indexOf(“Hello”);
if(intIndex == – 1){System.out.println(“Hello not found”);}else{System.out.println(“Found Hello at index “ + intIndex);}
/*we can also search a word after particular position usingindexOf(String word, int position) method.*/
int positionIndex = strOrig.indexOf(“Hello”,11);System.out.println(“Index of Hello after 11 is “ + positionIndex);
/*Use lastIndexOf method to search a last occurrence of a word within string.*/int lastIndex = strOrig.lastIndexOf(“Hello”);System.out.println(“Last occurrence of Hello is at index “ + lastIndex);
}}
/*Output of the program would be :Found Hello at index 0Index of Hello after 11 is 12Last occurrence of Hello is at index 12*/
Friday, 13 April 2018
Popular Posts
-
Python has one of the richest ecosystems of libraries and tools, making it a favorite for developers worldwide. GitHub is the ultimate tre...
-
Code Explanation: i = 0 The variable i is initialized to 0. while i < 5 : A while loop is started, which will run as long as the condi...
-
Explanation: range(5): Generates a sequence of numbers from 0 to 4 (inclusive). The for loop iterates through each of these numbers, assig...
-
Explanation: Step 1: a = [1, 2, 3, 4, 5] A list a is created with the values [1, 2, 3, 4, 5]. Step 2: b = a The variable b is assigned t...
-
What you'll learn Master the most up-to-date practical skills and knowledge that data scientists use in their daily roles Learn the to...
-
Prepare for a career as a full stack developer. Gain the in-demand skills and hands-on experience to get job-ready in less than 4 months. ...
-
Decorators in Python are an advanced feature that can take your coding efficiency to the next level. They allow you to modify or extend th...
-
What you'll learn Develop data engineering solutions with a minimal and essential subset of the Python language and the Linux environm...
-
How it works: List Initialization: numbers = [1, 2, 3, 4, 5] creates a list of integers. Indexing from the End: len(numbers) calculates th...
-
Explanation: Initialization: numbers = [ 2 , 5 , 1 , 3 , 4 ] We define a list numbers containing five elements: [2, 5, 1, 3, 4]. Loop with...
Categories
100 Python Programs for Beginner
(96)
AI
(38)
Android
(24)
AngularJS
(1)
Assembly Language
(2)
aws
(17)
Azure
(7)
BI
(10)
book
(4)
Books
(186)
C
(77)
C#
(12)
C++
(83)
Course
(67)
Coursera
(246)
Cybersecurity
(25)
Data Analysis
(1)
Data Analytics
(2)
data management
(11)
Data Science
(141)
Data Strucures
(8)
Deep Learning
(21)
Django
(14)
Downloads
(3)
edx
(2)
Engineering
(14)
Euron
(29)
Excel
(13)
Factorial
(1)
Finance
(6)
flask
(3)
flutter
(1)
FPL
(17)
Generative AI
(9)
Google
(34)
Hadoop
(3)
HTML Quiz
(1)
HTML&CSS
(47)
IBM
(30)
IoT
(1)
IS
(25)
Java
(93)
Java quiz
(1)
Leet Code
(4)
Machine Learning
(76)
Meta
(22)
MICHIGAN
(5)
microsoft
(4)
Nvidia
(4)
Pandas
(4)
PHP
(20)
Projects
(29)
Python
(997)
Python Coding Challenge
(444)
Python Quiz
(77)
Python Tips
(3)
Questions
(2)
R
(70)
React
(6)
Scripting
(1)
security
(3)
Selenium Webdriver
(4)
Software
(17)
SQL
(42)
UX Research
(1)
web application
(8)
Web development
(4)
web scraping
(2)
0 Comments:
Post a Comment