This class in the Apple developer library (Mac OS X, iOS) is used to represent and apply regular expressions to Unicode strings.

learn more… | top users | synonyms

0
votes
2answers
20 views

checking file extension with regular expression

I am writing a program that opens a file and loads all the file contents into a JTextArea. I want to restrict users from being able to open different file formats. The formats i want to accept ...
0
votes
1answer
21 views

NSRegularExpression to match and replace all occurencies (porting from Ruby lang)

I have troubles while trying to port the Ruby code to the ObjC code Ruby: clean_url = original_url.gsub(/\\u0026[^&]*/, "") Execution: original_url = ...
0
votes
3answers
32 views

NsRegularExpressions several float numbers separate with commas

i try to evaluate this sentence: <font color="0.839216,0.839216,0.839216" strokeColor="none" size="35" face="Avenir-Book"> i need to extract the 3 float values of the color attribute with ...
0
votes
1answer
32 views

NSRegularExpression to remove the rest codes

I want to remove the all strings from the below html after some parts. <br> <br> </div> <div class="notation_notes"> <hr> <br> ●表記について<br> <ul> ...
1
vote
1answer
66 views

Regex stringByReplacingMatchesInString

I'm trying to remove any non-alphanumeric character within a string. I tried the following code snippet, but it is not replacing the appropriate character. NSString *theString = @"\"day's\""; ...
0
votes
1answer
28 views

How can I make this regex?

I'm sorry for being annoying and asking other people to do this for me, but I have been trying for a while now and can't seem to get a working one. This is what it needs to allow: Lower case letters ...
0
votes
2answers
39 views

Modifying Occurrences of Time Format Regex in a Long String

I have strings containing Time values like 08:30:00AM and/or 12:45:00PM etc. Now what i need is to remove the part containing 'seconds' value in these strings to make upper strings like 08:30AM and/or ...
0
votes
1answer
37 views

Why tag '.' doesn't work in NSRegularExpression

I have this string : NSString* yourString = @"(;GM[1]FF[4]SZ[19]AP[CGoban Pro:2.2]PW[Michael Redmond]WR[9p]DT[2010-12-12]KM[6.5]RE[B+0.5]AN[Michael Redmond]BK[1]C[toto : [test]]"; And i have this ...
0
votes
1answer
38 views

How do I do backreferences correctly in Objective-C with NSRegularExpression?

In PHP I'd do something like this: But in Objective-C, I tried this: regex = [NSRegularExpression regularExpressionWithPattern:@"\\.([a-zA-Z0-9])" options:NSRegularExpressionCaseInsensitive ...
1
vote
1answer
71 views

Checking and editing NSMutableString

I get results in the following format: NSString *placeResult = @"111 Main Street, Cupertino, CA" or sometimes the result contains the name of a place: NSString *placeResult = @"Starbucks, 222 Main ...
1
vote
1answer
43 views

Regex too greedy; eats nearly all my rows

from some XML-data: <Row A1:Height="17" ss:StyleID="s139"> <Cell ss:StyleID="s69"><Data ss:Type="String">Title1</Data><NamedCell ...
0
votes
1answer
74 views

Regular expression for 10digit phonenumber in iOS

I'm trying to write a Regular expression to match a 10 digit number without any other characters. eg. 2345678901 the first digit should be between 2-9 while rest 9 digits can be any I have tried ...
0
votes
0answers
20 views

Use NSPredicate to search for abbreviated text

I'm using NSPredicate to search for text in an array: NSPredicate *resultPredicate = [NSPredicate predicateWithFormat:@"SELF contains[cd] %@", ...
0
votes
1answer
51 views

NSString find the symbol got crashed

Everytime I will get a string from my server as: "&abc;123:342:431:234& &xyz;232:2344:433:434& &pqr;234:453:534:3445&" but sometimes I'll get ...
1
vote
2answers
96 views

Extracting single values from a parsed NSString in objective-c

These are my sample NSStrings (parsed into an array), simplified. The single string object is parsed like "STRING1, STRING2 then DATE TIME then - A:VALUE", ex: The name of first value, first ...
0
votes
1answer
50 views

NSRegularexpression multiline and stack

I can't find a regular expression having balanced tags, one for opening and one for closing. Tags must enclose multi lines text; and tags are dynamic, not defined at compile time I can't match the ...
0
votes
0answers
32 views

Dynamic images HTML parsing on iOS

I have managed to parse images from dynamic HTML Files using the following code: - (NSString*)retrieveImageSourceTagsViaRegex:(NSURL *)url1 { NSString *string = [NSString ...
0
votes
1answer
21 views

How to strip comments from a file with NSRegularExpression

I have searched high and low but can't find a good regex for stripping // and /* */ comments in Objective C. However I found a great answer Regex to strip line comments from C# which I have ported to ...
0
votes
0answers
71 views

NsRegularExpression for phone number

Maybe you can tell me what regex I need use in my app. I find good code for making phone number, I change it for my needs. I need such format +7 123 123 45 67 I don't understand Regular Expressions, ...
0
votes
1answer
85 views

NSRegularExpression to match a certain pattern

Backgroud: I have a response like so (please note the new lines): HTTP/1.1 200 OK CACHE-CONTROL: max-age = 180 EXT: LOCATION: http://172.16.16.16:80/upnp.jsp SERVER: Linux/2.6.32.24 UPNP/1.0 ...
1
vote
0answers
107 views

What's wrong with my NSRegularExpression? [closed]

NSString *body = @"..."; // Remove all HTML and formatting from body NSError *error = nil; NSRegularExpression *regex = [NSRegularExpression ...
1
vote
2answers
100 views

UIWebView retrieve a link and navigate to it

I am adding a UIWebView to my app that should load a password protected webpage. It should then select a link from that page automatically and navigate to that page. This website changes it's links ...
0
votes
2answers
63 views

“\P{Letter}” and NSRegularExpression

I have an NSString I would like to test with an NSRegularExpression, but it doesn't act anything like I would expect and I don't know where to search for an answer anymore. So here is my code: ...
2
votes
2answers
82 views

NSRegularExpression acts weird (and the regex is correct)

I've got this regex ([0-9]+)\(([0-9]+),([0-9]+)\) that I'm using to construct a NSRegularExpression with no options (0). That expression should match strings like 1(135,252) and yield three ...
1
vote
4answers
128 views

iOS removing first N words from an NSString

How do you remove the first N number of words from an NSString? For example... "I went to the store to buy milk." I want to remove the first three words to make it... "the store to buy milk." ...
0
votes
1answer
144 views

iOS email address validation

I've got a form and what I'm trying to do is validate email addresses before they're inserted into my database. I've read multiple posts on this already and none of them have solved my problem. This ...
0
votes
1answer
86 views

Validating IP address by regular expression - Unknown escape sequence

I am working on an iOS project that require using regular expression to validate ipv4 address. I use following code // only support ip4 currently NSRegularExpression *regex = [NSRegularExpression ...
0
votes
1answer
73 views

Import Bookmarks from html file

Im trying to add a import bookmarks function to my app. I have some of it but it will just extract all URLs and titles. - (NSArray *)urlsInHTML:(NSString *)html { NSError *error; ...
1
vote
3answers
79 views

Extract text from some parsed NSString

This is my example string, parsed from a remote server: NSString *example = @"#parsed Value1:1a 2013-02-20 10:00:00 UTC Value2=2a Value3=3a Value4=4aKm Value5=A" I need to extrapolate the single ...
0
votes
1answer
68 views

Regular Expression block negation

I want to find out a string in which a particular tag does not occur, such as: <xyz>[\w]+<[^(unwanted)]></xyz> where unwanted will be interpreted as a, d, e, n, t and u. But ...
0
votes
1answer
108 views

regular expression pattern matching objective c

I have the following string: "abbot n. The superior of a community of monks." how would I separate "abbot" and "n. The superior of a community of monks." effectively? The logic I would ...
0
votes
1answer
59 views

Trimming NSString

I am trimming an NSString in the following way: NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"X = (\\d+.\\d+), Y = (\\d+.\\d+), (%@)" options:0 error:NULL]; ...
4
votes
2answers
122 views

How to use regular expressions to find words that begin with a three character prefix

My goal is to count the number of words (in a string) that begin with a specified prefix of more than one letter. A case is words that begin with "non". So in this example... NSString * ...
2
votes
3answers
136 views

How can I parse a string to extract numbers with a regular expression using NSRegularExpression?

I am new to regular expressions and have no clue how to work with them. I wanted to create a regex for the below piece of text to fetch the min, avg & max time. I would be using them with ...
1
vote
4answers
132 views

NSRegularExpression separating paragraphs

Consider this text: Paragraph 1: Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud ...
0
votes
1answer
150 views

regex pattern to match string in Objective C

Here is a regex pattern I created in Objective C: ^\n?([#]{1,2}$|[*]{1,2}$|[0-9]{1,3}.$) I want to match: starts with \n or empty ends with # or * or . if ends with . there will be 1 or 2 or 3 ...
0
votes
1answer
32 views

finding the index/position of a character in the URL format

I have the following url: http://test.me/s/hq6aN I basically wanted to replace that s with an d, what is the best way to do this using NSRegularExpression easily? Essentially what I want is to ...
0
votes
2answers
85 views

Remove dynamic text from NSString

I have a NSString with some text that i want to remove,this is the text that i want to remove from the NSString: Textid="more-98989"> the number can change to another number. Any way to do it ? ...
0
votes
1answer
93 views

Regex to match math equations

I'm trying to build a derivative calculator, so I'm breaking the equation into components and matching each piece to determine the rule to apply, but I'm completely new to regular expressions. Right ...
0
votes
2answers
109 views

Search a pattern in a NSString [closed]

I want to search a pattern in a string. In the below code the pattern string '*' can be any character. I got this sample code from here, but it's not working for me. NSString *string; NSString ...
1
vote
3answers
92 views

NSRegularExpression on NSString not working

InUITextBoxfield,i insert some value,and I Want to use RegularExpressions match the string ..now i want the text box text should be match for only numeric digits upto 3 when I press button then it ...
0
votes
3answers
113 views

Replacing several different characters in NSString

I am making an iPad app for personal use and I m struggling with some character replacement in some strings. For example I got an NSString which contains "\t\t\t C D". Now what I want to do is ...
4
votes
4answers
453 views

NSRegularExpression with arithmetic

I would like to change the font-size in an HTML string that I have to be half of its size. E.g. <div style="font-family:'Arial';font-size:43px;color:#ffffff;"> Will be <div ...
0
votes
2answers
229 views

Objective-C Regular Expression

I need a Regular Expression in Objective C to accept either male or female only..it should be case-Insensitive means can accept lower as well as upper .I gone through apple documents..and Implemented ...
1
vote
5answers
87 views

Copying selected files to NSArray from another NSArray in ios using pattern matching

I have an NSArray which contains all files present in my documents folder of my app. Here is array declaration code, NSArray * filePathsArray ; filePathsArray = [[NSFileManager ...
1
vote
3answers
188 views

ios use regex to find ID in html

Im using NSRegularExpression to find the occurrences of an ID with 40 characters in a HTML here my code: - (NSString *)stripOutHttp:(NSString *)string { NSLog(@"the page content :: %@", string); ...
0
votes
1answer
414 views

NSString to NSDictionary

I have a string (from HTTP Header) and want to split it into a dictionary. foo = \"bar\",baz=\"fooz\", beta= \"gamma\" I ca not guarantee that the string is the same every time. Maybe there are ...
0
votes
1answer
74 views

How to extract a number from a string using NSRegularExpression

I want to extract the number 81698 from the string below, however I am running into some difficulties. Here is my code. NSString *content = @"... list.vars.results_thpp = 32; ...
0
votes
0answers
36 views

Combine a NSPredicate with NSRegularExpression

I use Core Data and have a searchField where a user types in numbers. Numbers in my DB are of type string and contain points like "222.111.333", "22.111.333" The users sometimes type in the number ...
0
votes
1answer
33 views

Perform NSRegularExpression action in a selected tableview cell

I want to perform a NSRegularExpression action in a selected tableview cell. The problem is however, instead of preforming the action on the single selected item, it checks the entire array and then ...

1 2 3 4