Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
searchtext - case insensitive string searching
SearchText - case sensitive string searching
Calling Sequence
SearchText(pattern, string, range)
searchtext(pattern, string, range)
Parameters
pattern
-
string or name to be searched for
string
string or name to be searched
range
(optional) range of integers. Search for the pattern only in the substring determined by the range
Description
SearchText and searchtext are very similar. SearchText searches for the pattern in the string looking for exact matches. The searchtext function does the same searching, but it is case insensitive; that is, upper/lower case differences are ignored.
If the pattern is found, both functions return an integer which indicates the position of the first character that matched. If the pattern is not found in the string, these functions return 0.
The optional range restricts the search to the given positions. It is equivalent to searching on substring(string, range). This is useful when the pattern occurs more than once in the string. Negative integers in the range stand for positions counted leftwards from the right end of the string. The first position is 1. The range searches the entire string; the range searches the pattern in the last 20 characters of the string.
Thread Safety
The searchtext and SearchText commands are thread-safe as of Maple 15.
For more information on thread safety, see index/threadsafe.
Examples
See Also
StringTools, StringTools[Search], substring
Download Help Document