Software Venture Consulting
ToMarket

FileMaker Pro downloads & Resources
FileMaker Custom Functions
FileMaker Web Viewer Examples
FileMaker Pro & Lasso Consulting
Training
FileMaker Books
FileMaker Articles
FileMaker Error Reference

Free Web Tools
Free FileMaker Tools

Personal Pages
Videos
Adventures
Links

Shopping Cart
Shopping Cart

Search:

Free Newsletter
Signup


Brian Dunning
Contact me | vCard


Brian on CNN
Brian on CNN


Brian on CBS Radio


Privacy Policy



FileMaker is a registered trademark of FileMaker, Inc. in the U.S. and other countries.

 FileMaker Pro Custom Functions

Search  |  List  |  Show Random  |  Upload  |  Add This to Your Site

WrapURI ( uri ; maxchars ; linebreak_char )

Anthony Reimer,
http://contact.jazzace.ca/

Takes a long URI (a.k.a. URL) and breaks it into multiple lines

Sample Input:
WrapURI ( "www.example.com/thisisareallylongURIthatneedstobesplit/withouttoomuchhassle.html" ; 20 ; "ΒΆ")
Sample Output:
www.example.com/
thisisareallylongURI
thatneedstobesplit/
withouttoomuchhassle
.html


 Then copy & paste into FileMaker Advanced's Edit Custom Function window.

if you have myFMbutler's Clip Manager installed

Description:

This function is similar to WordWrap and Abscind in concept (and borrows liberally from same) but is specific to wrapping URIs (a.k.a. URLs). It tries to break the line at the nearest slash, and if that is not successful, it looks for the nearest dot. If both fail, it does a hard break at whatever the character limit (maxchars) is. It inserts whatever character(s) you supply in the third parameter (linebreak_char) inbetween these "lines."

I needed this function to break some URIs being displayed on a web page (fed by FileMaker) that were in a narrow sidebar. I used "<br />" as the linebreak_char to generate the correct (X)HTML to be displayed in the link. My FileMaker field calculation looked something like this:

<a href=\"" &
If ( Left ( uri ; 4 ) = "http"; ""; "http://") &
uri & "\">" & WrapURI ( uri ; 20 ; "<br />") & "</a>"

With the uri in the sample input, this calculation would generate:

<a href="http://www.example.com/thisisareallylongURIthatneedstobesplit/withouttoomuchhassle.html">www.example.com/<br />thisisareallylongURI<br />thatneedstobesplit/<br />withouttoomuchhassle<br />.html</a>

The link would then look like the sample output.

Note: these functions are not guaranteed or supported by BrianDunning.com. Please contact the individual developer with any questions or problems.

This is my Custom Function and I want to edit it

digg this page | del.icio.us this page

Custom Functions Widget
Download the Custom Function Dashboard Widget for OS X
Keep all the latest Custom Functions right at your fingertips!

Newest Custom Functions:

1. FormatDate( DatetoFormat )
  (Thu, May 08, 6:05pm)
2. antiFilter (textToFilter ; filterAllow ; filterSubChar ; start ; stop ; textBuilt )
  (Tue, Apr 22, 8:07am)
3. SmarterProper ( inText; prevCase; textSoFar; prefixList )
  (Mon, Apr 21, 7:16am)

RSS Feed of Custom Functions

Quick Poll...
Are you mainly Mac
or mainly Windows?
 • Mac
 • Windows
View the answers

ZipCodes FM

Find the closest locations by zip code using FileMaker. Click here.

Custom Function Authors:
Link to all of your own custom functions on this site with the following URL:
http://www.briandunning.com/filemaker-custom-functions/results.php?author=Your Name Here