
- TypeScript Tutorial
- TypeScript - Home
- TypeScript - Overview
- TypeScript - Environment Setup
- TypeScript - Basic Syntax
- TypeScript - Types
- TypeScript - Variables
- TypeScript - Operators
- TypeScript - Decision Making
- TypeScript - Loops
- TypeScript - Functions
- TypeScript - Numbers
- TypeScript - Strings
- TypeScript - Arrays
- TypeScript - Tuples
- TypeScript - Union
- TypeScript - Interfaces
- TypeScript - Classes
- TypeScript - Objects
- TypeScript - Namespaces
- TypeScript - Modules
- TypeScript - Ambients
- TypeScript Useful Resources
- TypeScript - Quick Guide
- TypeScript - Useful Resources
- TypeScript - Discussion
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
TypeScript - String split()
This method splits a String object into an array of strings by separating the string into substrings.
Syntax
string.split([separator][, limit]);
Argument Details
separator − Specifies the character to use for separating the string. If separator is omitted, the array returned contains one element consisting of the entire string.
limit − Integer specifying a limit on the number of splits to be found.
Return Value
The split method returns the new array. Also, when the string is empty, split returns an array containing one empty string, rather than an empty array.
Example
var str = "Apples are round, and apples are juicy."; var splitted = str.split(" ", 3); console.log(splitted)
On compiling, it will generate the same code in JavaScript.
Its output is as follows −
[ 'Apples', 'are', 'round,' ]
typescript_strings.htm
Advertisements