Tagged Questions
-2
votes
1answer
49 views
Mathematica Style Solution to String Parsing
I want to take a string of the form "(ABC)(DEF)" and translate adjacent pairs of letters into numbers, interpreting the letters inside parenthesis as cycles. From my example I would want to generate ...
1
vote
1answer
109 views
Manipulating/Clearing Variables via Lists: Mathematica
My problem (in Mathematica) is referring to variables given in a particular array and manipulating them in the following manner (as an example):
Inputs: vars={x,y,z}, system=some ODE like ...
0
votes
2answers
245 views
Importing and manipulating a .txt in mathematica
I have a huge text file that I import to mathematica. It looks something like this:
In[9]:=import=SplitBy[Import["textfile.txt","List"],"\\t"];
Out[9]:={{ A 021 2.3 A 002 2.6},{ A ...
0
votes
2answers
230 views
How to use a list of strings as a variable in Mathematica 8?
I believe my question to be pretty simple, I just cannot find a solution, I have exhausted help docs looking for a similar situation.
I have a list of strings which are city names, I want to set up a ...
3
votes
3answers
521 views
Wolfram Mathematica import data from multiple files
I have a lot of files. Every of which contains data.
I can happy import one file to Mathematica. But there are more than 500 hundreds of files.
I do it so:
...
2
votes
3answers
394 views
convert string hours:minutes:sec.milisec to seconds
An absolute time is given in stored in this format:
time = "000:03:07.447"
How can this string be converted to seconds in an elegant way?
Update:
As suggested by Harper89
3600*#1 + 60*#2 + #3 ...
3
votes
4answers
229 views
How to select based on a partial string match in Mathematica
Say I have a matrix that looks something like this:
{{foobar, 77},{faabar, 81},{foobur, 22},{faabaa, 8},
{faabian, 88},{foobar, 27}, {fiijii, 52}}
and a list like this:
{foo, faa}
Now I would ...
6
votes
1answer
94 views
Using the “CreateDocument” function in Mathematica without losing the formatting
I want to create a formatted document from a list of expressions. One of the expression in this list is the following:
text = Style["a\n\tb\n\t\tc", FontSize -> 17, FontFamily -> "Monaco"]
...
0
votes
4answers
310 views
List name to String in Mathematica
Considering :
daList=Range[10]
What I need is the title to be the list name but trying :
ListPlot[daList, PlotLabel -> ToString[daList]]
does not seem to work.
EDIT
"daList" is the ...
1
vote
2answers
190 views
Converting string to illegal/unsupported expression in Mathematica.
I need to input a variable, say var, into Mathematica function Series[ ] like this: Series[A^2+B^2+C^2, var]. Series[ ] has the following syntax:
Series[f, {x, x_0, n}] generates a power series ...
1
vote
2answers
284 views
Mathematica - Separate elements of a string into columns?
I'm producing encoded output that is a list of strings that look like lists. Is there a way to turn them into actual lists so I can select elements and format them into columns? Or a way to select ...
9
votes
3answers
221 views
'StringCut' to the left or right of a defined position using Mathematica
On reading this question, I thought the following problem would be simple using StringSplit
Given the following string, I want to 'cut' it to the left of every "D" such that:
I get a List of ...
3
votes
3answers
462 views
Create variable with list of strings
I would like to know if it's possible to use the content of a variable list of strings to create a new variable.
As an example:
str={"cow","monkey"}
these strings are extracted from a file. Now I ...
13
votes
9answers
1k views
Matching brackets in a string
What is the most efficient or elegant method for matching brackets in a string such as:
"f @ g[h[[i[[j[2], k[[1, m[[1, n[2]]]]]]]]]] // z"
for the purpose of identifying and replacing [[ Part ]] ...
3
votes
1answer
382 views
Make string manipulation more convenient in Mathematica
With Mathematica I always feel that strings are "second class citizens." Compared to a language such as PERL, one must juggle a lot of code to accomplish the same task.
The available functionality ...
3
votes
1answer
123 views
What's the best way to slurp the contents of a file into a string in Mathematica?
I know this is asked commonly but googling doesn't turn up a definitive answer for Mathematica so I thought it would be valuable to have this on StackOverflow.
I've been doing this with Import but it ...
10
votes
3answers
648 views
Bug in Mathematica: regular expression applied to very long string
In the following code, if the string s is appended to be something like 10 or 20 thousand characters, the Mathematica kernel seg faults.
s = "This is the first line.
MAGIC_STRING
Everything after ...
1
vote
4answers
460 views
Mathematica StringReplace to replace a substring containing newlines
I have something like the following in a string:
blah blah
BEGINIGNORE
this stuff should get stripped out
ENDIGNORE
more stuff here
I would like to do this (perl syntax): ...

