Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
Regular expressions (often shortened to "regex") are a declarative language used for pattern matching within strings. Please also include a tag specifying the programming language or tool you are using.
0
votes
1answer
38 views
Regex to match sentences from facebook posts and comments
I'm looking to get a regex working in python that captures all of the message within a facebook post but then STOPS (instead of returning the rest of the JSON textline).
I know the specific field ...
0
votes
1answer
67 views
Facebook registration form email validation pattern
When searching for RegExp patterns to validate an email address in Javascript, I found a pattern that Facebook uses from here.
function is_email(a){return ...
0
votes
1answer
42 views
0
votes
1answer
44 views
How to verify Facebook signedrequest - valid characters and length
I want to be able to verify via RegEx that a SignedRequest which was supposedly returned by Facebook is the right length (under n max characters) and has only valid characters.
Is there a length ...
0
votes
2answers
230 views
Facebook Login using Jmeter
I want to do a load test my Heroku application using Jmeter.
To access the functionality of the application, I need to login through Facebook first.
I tried with browser recording using proxy server. ...
0
votes
3answers
58 views
Trying to construct a regex to match tagged usernames
I'm trying to build a regex (in C#) that matches tagged facebook usernames (@username1 @user.name, @user_name, etc). I think facebook usernames can have alphanumeric, dash, period, and underscore ...
1
vote
2answers
102 views
Using Open Graph Protocol to extract og:image source
Using https://github.com/scottmac/opengraph
How do I access the individual array elements such as just the [image]
$graph = ...
0
votes
2answers
404 views
php preg_match help getting facebook username/id from URL
I am trying to get the facebook username or id from a facebook url and was wondering if you could help me. I'm sure it's just a simple regex function but I have tried and can't seem to do it myself.
...
-4
votes
1answer
76 views
Facebook profile page regex excluding dialog|plugins|like pages [closed]
I am searching for a regex to find the facebook profile page in a webpage html source. I tried something like the below one and it's not working. I am using php preg_match.
...
0
votes
1answer
40 views
Reg Ex Facebook
I am trying to extract some information from facebook using Regex. Here is a link with an example:
https://graph.facebook.com/210989592315921
I was interested in what would the regular expression be ...
0
votes
2answers
92 views
Remove extra bits from facebook album URL using php or javascript
Im just using the graph.facebook.com code to display photos from an album but i want the user to be able to paste the URL from their album and then using a php regular expression or javascript i would ...
1
vote
2answers
271 views
My Objective-C program using regular expression with getting whole HTML but sometimes exception occurs
This is question about Objective-C. I wrote the program that uses regular expression with getting whole HTML. I have uploaded the program to GitHub. However, exception occurs.
The purpose of this ...
0
votes
2answers
319 views
Regex to add and replace parts of a URL
I'm trying to help a buddy use his Facebook to post to his website. I've managed to make the posts from his wall's RSS feed, but in the feed any images show as tiny thumbnails.
The difference between ...
0
votes
0answers
156 views
C# Streamreader not original source
I am trying to make this small facebook desktop app. That means not using API for login and authentication, but after I retrieve the Access Token I do use the API to fetch details.
I do the login ...
0
votes
1answer
521 views
Regular expression to get a Facebook user ID from a graph API URL?
What is a regular expression that will pull the user ID out of a URL of the following format? E.g. in the example below, I am looking to get "1227627" as a match after applying the regex.
...
1
vote
1answer
410 views
How to parse Facebook fan page from HTML code with PHP
I need regex pattern example for PHP with preg_match_all usage how to parse Facebook fan page URL from the HTML code.
Examples:
http://www.facebook.com/pages/SomeTitle/6203451642
...
1
vote
1answer
2k views
JavaScript Regex to check email format like Facebook registration form
I currently use this pattern for checking email format:
...
0
votes
3answers
362 views
RegExp for parsing html;
Could you help me to make RegExp? In large string I need to find these substrings(2 formats):
http://www.facebook.com/profile.php?id=100002234024152&ref=ffa\
...
1
vote
3answers
369 views
Split parameter into string variables
I sent facebook a web request, it displays this on the screen,
access_token=129858573723395|2.AQB8yp6_GcD5hfxp.3600.1308506400.1-100000676383590|DUjbM8aN5PP-qzkLfTkGiZeCaLx4&expires=6099
How do ...
2
votes
1answer
1k views
jQuery - Facebook style tagging with string and hidden fields regex. Autocomplete
I would like to create a similar system to the facebook status update using jQuery.
If you take a look at the guts of it, just a few elements below the What's on your mind? textarea tag, there is a ...
0
votes
2answers
148 views
6
votes
3answers
5k views
Facebook profile URL regular expression
Given the following Facebook profile and page URLs, my intent is to extract profile ids or usernames into the first match position.
http://www.facebook.com/profile.php?id=123456789
...
5
votes
1answer
2k views
facebook username validation regex pattern
i need a regex pattern to validate if a string is a valid facebook username?
1
vote
1answer
1k views
Parsing facebook oauth access_token string
Facebook returns access tokens in the form of a string:
'access_token=159565124071460|2.D98PLonBwOyYWlLMhMyNqA__.3600.1286373600-517705339|bFRH8d2SAeV-PpPUhbRkahcERfw&expires=4375'
Is there a ...
2
votes
1answer
1k views
Authenticating if a Facebook account exists - don't want to go through FB login
I'd like to figure out a way to authenticate a facebook account on a form, without having to go into facebook login and whatnot.
So my question, is there anyway to check, I was thinking maybe the ...
1
vote
1answer
489 views
Regex to change attribute order in a JSON string?
Using Facebook Search API, I got an response like:
"data" : [
{
"created_time" : "2010-07-24T19:47:31+0000",
"description" : "...",
"icon" : "...",
"id" : "1",
...
0
votes
1answer
741 views
Regular expression for a facebook proxy email address
What would be the regular expression to match a facebook proxy email address of a facebook user?
1
vote
2answers
2k views
Regular expression to parse YouTube embedded code
How can I take the YouTube embedded code that YouTube provides and use a regular expression to convert it to valid FBML code, that is, use the fb:swf tag?
So far the regular expression I've come up ...