Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
StringTools[CommonPrefix] - return the length of the longest common prefix of two strings
StringTools[CommonSuffix] - return the length of the longest common suffix of two strings
Calling Sequence
CommonPrefix( s1, s2 )
CommonSuffix( s1, s2 )
Parameters
s1
-
Maple string
s2
Description
The CommonPrefix(s1, s2) command returns the length of the longest common prefix of its input strings, s1 and s2.
The actual common prefix can be obtained by indexing into either of the strings, s1 or s2, with the range 1 .. CommonPrefix( s1, s2 ).
Note: String t is a prefix of string s if , for some integer , or t is the empty string. For example, the prefixes of the string "abc" are "", "a", "ab", and "abc".
The CommonSuffix(s1, s2) function returns the length of the longest common suffix of its input strings, s1 and s2.
This function can be defined, in terms of CommonPrefix and Reverse as
Examples
See Also
string, StringTools, StringTools[IsPrefix], StringTools[IsSuffix], StringTools[Reverse]
Download Help Document