2
votes
1answer
41 views

Number_format for arabic/persian numbers

I have a "price" field in a mysql database, which contains the price of a product in arabic or persian numbers. Example of number: ۱۲۳۴۵۶۷۸۹۰ //1234567890 I cannot figure out how to format this so ...
0
votes
1answer
38 views

.NET verify format string for a dynamic type

I would appreciate some aid in getting the last piece solved please. What I want is to read from configuration the TYPE, VALUE and FORMATSTRING to be applied on the VALUE. In Code, what I am trying ...
1
vote
3answers
117 views

c# Form Collection Values to List of Int

I have a Form Collection in my C# MVC4 application. In index[0] of this collection there is a string that will always be formatted like "10=on&13=on&15=on"; the only difference being the ...
0
votes
2answers
24 views

String formatting prob for making database value inside a file

I have a bean class which does maintain user data: soppose I have created a postgresql DB table like this: StringBuffer sqlStr = new StringBuffer(); sqlStr.append("CREATE TABLE Users (" ...
0
votes
3answers
99 views

Convert number to phone format using regular expression

My problem is that I have some text field with number and I must to convert this number to some phone format like this one (xxx) xxx-xxxx. I have tried an regular expression with this code: wholeText ...
0
votes
3answers
84 views

Find phone number in a string and format

I have strings with un-formatted phone numbers, is there any way to find them and format the number and save? Sample strings I have are Name: Tippu Phone: 408.273.3939 Email: tippu@tippu.com ...
-1
votes
3answers
58 views

Variable expansion in Python regex

I am trying to write a script in Python which "cleans" a number of file-fed text like this: for i in range(1,10): number = 1 cleanText = re.sub('number.','',line).strip() number = number ...
0
votes
2answers
79 views

formatting local mobile to international in php

I am looking for a simple regex to convert both UK (44) and Indian (91) numbers into a valid international format using PHP. The formats required are: 447856555333 (for uk mobile numbers) ...
1
vote
3answers
84 views

regular expression javascript numbers and letters

I can't for the life of me seem to figure out how to set a regular expression of an element with the formatting. 1d 5h 6m 12s And also allow it to have any variation of those such as 1d 1d 1h ...
0
votes
0answers
52 views

Can Netbeans use regex to make my own 'format code' functions?

I was searching for a function, or a 'format code' function in NetBeans to format my arrays in PHP in a proper way. E.g.: $arr1 = array('allow',' => array('index', 'admin', 'view', 'create', ...
-2
votes
2answers
81 views

shorten the weekdays from texts [closed]

I am writing a python library that takes a paragrah that consists of different types of hours format. Paragraph is actually taken from different restaurant sites, they have hours of operation in ...
-7
votes
1answer
121 views

Formatting a string [closed]

I want to format my string in java. The string contains yahoo header (which we can see after opening an email then click on "view full header"). Input string is the one which I get through htmlparser. ...
1
vote
3answers
196 views

Writing console output to a file in python

Sorry for this question, I know that this is a recurrent topic, but I'm incapable of solving my problem, which in fact, is simple to describe: I want to write into a file the output of an execution as ...
1
vote
4answers
80 views

How to format given string using regex?

So I have defined variables in such a way in my file: public static final String hello_world = "hello world" public static final String awesome_world = "awesome world" public static final String ...
-5
votes
2answers
121 views
0
votes
2answers
226 views

JAVA SimpleFormatter, is impossible to set the regex

I am adding a logger to my program, surfing the net I add to my code a very simple logger with the basic 2-line definition: private static final Logger LOG = Logger.getLogger(GUI.class.getName()); ...
1
vote
2answers
405 views

How to validate if the input matches a specific timestap format?

I need to check if the input matches to the timestamp format yyyy-MM-dd'T'HH:mm:ss.SSS. Eg. 2012-08-16T11:07:10.793 How can I do it?
1
vote
6answers
95 views

Regex composion

I want to parse a line from a CSV(comma separated) file, something like this: Bosh,Mark,mark@gmail.com,"3, Institute","83, 1, 2",1,21 I have to parse the file, and instead of the commas between the ...
0
votes
2answers
382 views

Insert multiple line breaks into a JavaScript string (regex) (CodeMirror)

I have a few strings and I would like to insert some line breaks into them at certain points. I figured out a few of the logistics but as a whole I can't seem to crack this problem, probably because ...
0
votes
3answers
180 views

Regex match for contents of <li> element

I have the following content <li>Title: [...]</li> and I'm looking for regex that will match and replace this so that I can parse it as XML. I'm just looking to use a regex find and ...
1
vote
4answers
176 views

using regex to validate input formatting in C#

This is a super basic question (I am brain dead today): How do I validate in input using regexes, to see: 1) if the input is in a certain form 2) if the input is all caps (just casting the input to ...
1
vote
1answer
120 views

How to add text string to Date column and adjust sort order in Tablesorter

I recently had help getting the correct Date format on my jQuery / tablesorter table. The client is listing companies in a table and wants one of the columns sortable by date, several of which are ...
0
votes
1answer
160 views

Return an Error if not true (python)

I have a list of rules for a given input file for my function. If any of them are violated in the file given, I want my program to return an error message and quit. the first line should start with ...
0
votes
1answer
71 views

Regex Negations in Vim

Question: How do I convert var x+=1+2+3+(5+6+7) to var x += 1 + 2 + 3 + ( 5 + 6 + 7 ) Details: Using regular expressions, something like :%s/+/\ x\ /g won't work because it will convert += to + = ...
5
votes
3answers
205 views

How do you create a string to match an regex?

I need to create a formatting documentation. I know the regex that are used to format the text but I don't know how to reproduce an example for that regex. This one should be an internal link: ...
1
vote
3answers
137 views

What is a regular expression to catch all git commit footer lines in git log output?

I am writing a script to remove git commit tags (eg Signed-off-by:, Reviewed-by:) from each git commit message. Currently the script is in python. Right now I have a very simple ...
0
votes
4answers
46 views

is it possible to do something like that with a regular expression? if not, what are the alternatives?

Suppose I have a text file with some data I want to retrieve lost in a sea of regular written language. Each piece of data I want to retrieve is a tuple of 3 numbers between 0 and 99 (that I will ...
0
votes
2answers
329 views

Format text with javascript from right to left using regular expresions

I have specific built in functions where admins can execute through a website. For simplicity let's pretend there are only 2 functions which are: 1) func1 "requires 2 paramters" 2) func2 "requires 3 ...
0
votes
1answer
186 views

Inserting Commas into numbers for both objects and input text fields

Situation: I have a calculator that I'm developing using these formulas: // --- Math --- function national(){ x = Number($('#budget').val()); y = Number($('#percentage').val()); ...
2
votes
1answer
2k views

jQuery string replace matched regex

I am attempting to format an entire column of a table by replacing the data in each cell with a string. Simply, if I enter "nargles" in the input field and click a format button at the top of a table ...
0
votes
4answers
171 views

Formating text file

I have a txt file that I would like to alter so I will be able to place the data into columns see example below. The reason behind this is so I can import this data into a database / array and ...
0
votes
1answer
153 views

Using grep to replace every instance of a pattern after the first in bbedit

So I've got a really long txt file that follows this pattern: }, "303" : { "id" : "4k4hk2l", "color" : "red", "moustache" : "no" }, "303" : { "id" : "4k52k2l", "color" : "red", ...
2
votes
1answer
336 views

Fixing Sass / SCSS bracket indentation

I have a regex puzzle for you all! A week or so ago, I decided to change the formatting of my Sass file from this: a { color: red; text-decoration: none; &:hover: { color: blue; ...
0
votes
1answer
127 views

How would I be able to validate or format a location number 00-00-00-000-000 via Java-Script?

I have a question. How would I be able to validate or format a location number 00-00-00-000-000 digits 0-9 where 0 is via java-script. something like this function formatTime(time) { var result ...
3
votes
3answers
2k views

Powershell Parsing Help - How to output a list of folder names into a text file

I have a simple script that reads the folder names and outputs them into a text file. I realized I got a lot more output then I wanted, so I used the select-item cmdlet to select just the name ...
0
votes
2answers
225 views

How does Textile detect and remove <script> tags?

I'm using Textile for content editing on a site. Only trusted users have access to editing. I want to insert insert gists from GitHub: <script ...
1
vote
1answer
496 views

Java - How to format a regular expression?

I want to create a small window where a user will : Enter some text in JTextField1. Then he will enter a regular expression in JTextField2 to check if the text in JTextField1 has some text matching ...
1
vote
2answers
1k views

php format a website url with http if not present more of a string thing

I have a comment system that allows auto linking of url. I am using cakephp but the solution is more just PHP. here is what is happening. if the user enters fully qualified url with http:// or ...
1
vote
2answers
373 views

RegEx for Phone Number Numbers with Letters

I need to format a phone number as one long string of numbers (US Phone Number format) // I know there are tons more $phones = array( '1(800) 555-1212', '1.800.555.1212', '800.555.1212', ...
1
vote
4answers
402 views

Massaging varchar data into numbers with mysql

I'm working on updating a system that stores financial information and am using a table structure that uses DECIMAL fields for the data in question. Unfortunately, my predecessor, in his/her ...
1
vote
4answers
2k views

Stripping a phone number of its parenthesis, spaces, and hyphens in PHP?

I have a phone number stored in $phone, it looks like this: (555) 555-5555. I want it to look like this: 5555555555. How do I take the string and strip it of hyphens, spaces, and parenthesis?
5
votes
2answers
996 views

Vim: Aligning columns by whitespace

what for a regex is needed for formating some lines from 0 0 0 00 00 00 000 000 00 0 00 000 000 00 0 000 0 000 to 0 0 0 00 00 00 000 000 000 0 00 000 000 00 0 000 0 ...
2
votes
3answers
5k views

Regex - Strip non numeric and remove cents if any

I'm currently working on a project in PHP and I'm in need of some Regex help. I'd like to be able to take a user inputted monetary value and strip all non numeric and decimal places/cents. Ex: ...
3
votes
1answer
456 views

Bolding and Italics

I want to achieve what stack overflow does, so you can do _italics_ and *bold* and it changes it to <em>italics</em> and <strong>bold</strong>, however, I'm a beginner to ...
0
votes
4answers
183 views

Mysql REGEX for detecting long lines

I have some records in my database that looks like that : Lorem ipsum dolor sit amet, consectetur adipiscing elit....... <PRE> one short line an other short line a very long line I want to ...
0
votes
3answers
1k views

Javascript, String formatting: I need the first 4 letters of a string, lowercase, whitespace skimmed, symbols removed

...I should just list them: First 4 letters/numbers, with... All lowercase. Whitespace stripped. Symbols removed. Should be simple. What's the best way to do this?
0
votes
1answer
143 views

Need help unformatting text

I am currently programming a Visual C# service to receive emails from various sources then I take certain info and organize it in a database using Regex to retrieve the deferent cell values (such as ...
0
votes
0answers
74 views

is there a free open source text area type component for java which supports any number of regular expressions which will be highlighted in the text

I am looking for an existing free component that can support any number of regular expressions that will be highlighted in the text in any colour. The regular expressions should be configurable to ...
0
votes
4answers
531 views

Regex for url formatting (www.domain.tld to anchors)

I'm currently developing a little browser-based Twitter widget. Currently, I'm stuck with getting the URLs to work. I'm kinda newbie, when it comes to regex (I know, how to get parts of a string, but ...
4
votes
2answers
2k views

Python: Convert format string to regular expression

The users of my app can configure the layout of certain files via a format string. For example, the config value the user specifies might be: layout = '%(group)s/foo-%(locale)s/file.txt' I now ...

1 2