Search found 1 match

by emiclo
Fri Sep 20, 2024 8:27 pm
Forum: Talking LiveCode
Topic: How to Change All Occurrences of a Substring to Uppercase in a Field
Replies: 7
Views: 16898

Re: How to Change All Occurrences of a Substring to Uppercase in a Field

A start:

on mouseup
put "some text" into searchedString
put the length of searchedString into stringLength
put zero into codepointsToSkip
put zero into startCharOfSearchedString
put "no" into endOfSearch

repeat until endOfSearch is "yes"

put codepointoffset(searchedString, field "my ...