Questions tagged [regexkit]

RegexKit is an Objective-C framework for regular expressions.

RegexKit is an Objective-C framework for regular expressions that is tuned for high performance and includes support for Mac OS X 10.5 Leopard.

7 questions
8
votes
2 answers

Best Practice: Partial Regex Matching

I'm not sure that regexes are the best solution here, but they seem logical enough; I'm just not sure how to actually implement this. Basically, I want my user to be able to type in a method name and have it parsed for validity after each character…
Plastech
  • 757
  • 6
  • 17
2
votes
6 answers

Validating the phone numbers

I want to have only 13 numeric values or the 13numeric values can be prefixed with "+" sysmbol.so the + is not mandatory Example : 1234567891234 another example is : +1234567891234 Telephone number format should be international,Is there any Regex…
user198725878
  • 6,266
  • 18
  • 77
  • 135
2
votes
1 answer

How can I use regex to put quotes around a statement

I am using regexkitlite to validate some data in my iPhone app in xcode. I am making an api call that sends a json result of: "taskDate": newDate("September 23, 2011 00:00:00") how do i use regex to convert it to: "taskDate": "newDate("September…
bakwarte
  • 317
  • 1
  • 2
  • 10
1
vote
1 answer

RegexKit and RegexKitLite with Xcode 4 gets "Semantic Issue" errors/warnings

I am using Xcode 4.3 on Mac OS X 10.7.3. Base SDK and Deployment is OS X 10.6. When I use RegexKitLite, I get lots of compiler warnings: 'Semantic Issue' Passing 'void *volatile __strong *' to parameter of type 'void *__strong *' discards…
Harald
  • 75
  • 7
1
vote
1 answer

rewriting NSRegularExpression to RegexKit

I'm quite new to Mac OS X development(just my second day). Did a couple months of iOS programming, got the basics, made a small app. Then I decided to make it also for Mac OS X when I suddenly encountered a problem: NSRegularExpression is only…
Novarg
  • 7,390
  • 3
  • 38
  • 74
1
vote
1 answer

What would cause RegexKit to spawn a "Requested configuration not supported" error?

I have the framework installed per the instructions on the website and RegexKit.h imported into my AppController header file. I'm using a simple method defined in AppController.m to make sure everything is working. - (IBAction)test:(id)sender { …
0
votes
1 answer

Having trouble importing RegexKit into an Xcode 4 project

I am using XCode 4, trying to import the RegexKit framework into my project so that I can use regular expressions for some text parsing code. The framework is installed by default into the /Developer/Local/Frameworks folder, and I was able to…
Plastech
  • 757
  • 6
  • 17