Skip to content

Instantly share code, notes, and snippets.

@aliselcuk
Last active December 7, 2018 02:53
Show Gist options
  • Save aliselcuk/03c1c8b43e1699e29848c6273d2814f4 to your computer and use it in GitHub Desktop.
Save aliselcuk/03c1c8b43e1699e29848c6273d2814f4 to your computer and use it in GitHub Desktop.
PhpStorm RegEx Search & Replace
# Search:
import (\w+) from '@shared.*'
# Replace
import \{ $1 \} from 'library-js'
@aliselcuk
Copy link
Author

Replaces:
import AnyModel from '@shared/........'

With:
import { AnyModel } from 'library-js'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment